This question is locked. New answers and comments are not allowed.
I'm building a column using column template using the code below.
columns.Template(o =>{%><%= Html.ActionLink(o.ClaimsActivityId.ToString(), "Index", "ClaimActivityDetail", new { claimsActivityId = o.ClaimsActivityId.ToString() }, null)%><%
}).Title("Ref #");
I'm able to build the ActionLink column successfully , but the column is loosing the sorting capability.
I need help with 2 things:
1) How to make the ActionLink column sortable.
2) How to add css to the column header and column data.
Thanks