Sorting in partial view Grid, without post back
I am calling below partial view from a Main view - .View2.cshtml-
-------------
@Html.Grid(Model.TVModel).Named("ResultsGrid").Columns(c =>
{
c.Add(mod => mod.Log.SiteID).Titled("Site ID").SetWidth(100);
c.Add(mod => mod.Log.ProcessDateFrom).Titled("Date Processed").SetWidth(100)
c.Add(mod => mod.Log.ProcessDateTo).Titled("Date Processed").SetWidth(100).Sortable(true) // setting grid sorting
How to implement sorting on above partial view. On click of column header, the column should get sorted without post back