I have used telerik grid in my MVC app. One of the columns contains only action links.
How can apply sorting for this column?
In short, I want to sort the action link column by their text.
Is it possible?
Thanks,
Kapil
2 Answers, 1 is accepted
0
Accepted
Atanas Korchev
Telerik team
answered on 17 Feb 2010, 04:17 PM
Hello Kapil Koli,
You cannot sort Template columns. However you can specify the template of a bound column which in turn is sortable:
columns.Add(c => c.CustomerID).Template(c => {
%>
<%
});
Regards,
Atanas Korchev
the Telerik team
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Public Issue Tracking
system and vote to affect the priority of the items.