Been googling all this while on how to convert an html table to something pagable and sortable, and I have stumbled across jqGrid jquery plugin. I've learned so far that we have to call tableToGrid()
to convert the table (which we pass as a jquery selector string to the method). I've also tried a host of other things, like for e.g:
tableToGrid('#GridView1');
$('#GridView1').jqGrid({
rowNum: 10,
pager: '#pager',
rowList: [10,20,30]
});
But all these do not provide me with the proper result. Is paging possible when we convert an html table to grid?