How do I pass parameters from an ActionLink from a grid to a jquery function?
This is ActionLink:
gridPortfolio.Column( format: @<text> @Html.ActionLink("Delete", "DeleteData", new {id = item.CD_PORTFOLIO, par = "PO"}, new { @onClick = "deleteData()", @class="ActionImgD" })</text>)
and this is the function:
function deleteData(params) {//conteudo}