BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
@(Html.EJ().Grid<object>("FlatGrid")
. . .
.Columns(col =>
{
. . .
col.Field(x => x.EmployeeName).HeaderText("Employee Name").Template("<a rel='nofollow' href = '" + Url.Action("EditEmployee", "SCM", new { id = "{{:EmployeeID}}", status = ViewContext.RouteData.Values["id"] }) + "' data-req = {{:EmployeeID}} id = {{:EmployeeID}} onclick='check({{:EmployeeID}})' class='EditEmployee'>{{:EmployeeName}}</a>").Add();
}))
<script type="text/javascript">
function check(val) {
//here we can assign the corresponding primarykey value as additional parameter
var str = $("#" + val).attr("rel='nofollow' href");
str.replace("{{%3aEmployeeID}}", val);
}
</script> |