How to stay on current paging after page PostBack ?
How to stay on current paging after page PostBack ?
Hi , In my application iam intigrating jq-Datatable with gridview Control, with below code,
var table = $('#<%=GridView1.ClientID %>').prepend($('<thead></thead>').append($('#<%=GridView1.ClientID %>').find('tr:first'))).DataTable({
"paging": true,
"ordering": false,
"info": false,
"pageLength": 10,
"bLengthChange": false,
});
and the functionalitlity working fine, but the problem is,In my gridview i have edit button for every row, if we click the edit button,the page is goes to server side and postback is occured. here if we are in gridview Page-Index 2 and click edit button, after postback gridview Page-Index possitin comes to 0. https://datatables.net/forums/discussion/573/how-to-stay-on-current-page-after-re-draw we have some stuff in above page but i am confusing to integrate. How can i solve the issue?
(Sorry For My English)