tags:

views:

39

answers:

0

I have a session data which I am binding to jqGrid. I want to implement sorting on jqGrid. For this I converted my session data like

DataTable dtProduct = (DataTable)Session["ProductSearchResult"];
dtProduct.DefaultView.Sort = sidx;

But sorting is not yet working. If I am missing any other step please tell me.