I'm actually using jquery dataTables pluging on a GridView for searching purposes as well as other great settings. If I go to the page number 2 and my page does postgback clicking any server object, I lose the page where I was as well as the number of entries selected, means the table just get the initial settings again. So my question is, is it possible to keep the settings of my table (GridView) after the page does Pastback, either getting my current page index of the table and entries number before postback and after postback set those settings to the table again? I tried but nothing seems to be working well, the table just go to default settings always. I tried this way:
$(document).ready(function () {
var tableScopeitems = $('#gridScopeItem').DataTable({
"sPaginationType": "full_numbers",
"lengthMenu": [[10, 25, 50, 100, -1], [10, 25, 50, 100, "All"]],
"iDisplayLength": 100
});
tableScopeitems.ajax.reload(null, false);
});