Hi,
I have a telerik grid which contains a template column.
What I would like to do is only apply sorting to this template column and NO other column in the grid.
Please can someone advise me on how I can go about doing this for the Name column?
Any help would be much appreciated as I am new to using Telerik grids.
Thank you very much
@(Html.Telerik().Grid(Model.MyGrid)
.Name("MyGrid")
.Columns(columns =>
{
columns.Template(c => @Html.ActionLink(c.Name, "Action", "Controller", new { id = c.Id }, null)).Width(100).Title("Name");
columns.Bound(c => c.Title).Width(100);
columns.Bound(c => c.Occupation).Width(100);
})
.Sortable(sorting => sorting.Enabled(true)))