0
How would I pass parameters from an Actionlink of a grid to a jquery function?
This is the Actionlink:
gridPortfolio.Column( format: @<text> @Html.ActionLink("Delete", "DeleteData", new {id = item.CD_PORTFOLIO, par = "PO"}, new { @onClick = "deleteData()", @class="ActionImgD" })</text>)
and that’s the function:
function deleteData(params) {//conteudo}
You will want to continue making the request after or just javascript?
– Maicon Carraro