I'm using jQuery's tablesorter plugin to sort my gridview on the client side. But here is the problem, i have to make that sorting option available to only one column. (column number is 7 in gridview)
$("#<%=gvResults.ClientID%>").tablesorter();
How can we make it possible with table sorter plug-in. Any suggestions please
If you know the column index that will have sorting enabled, then set the
headers
option as follows:The above code works on both the original tablesorter and my fork of tablesorter.
If you happen to be using my fork of tablesorter, then you can add class names to the headers:
and then initialize tablesorter without any extra options: