I have a asp.net gridview and used a jquery dataTable. The search feature works fine but the problem is after I searched and click the edit button, the table becomes empty. I used stateSave : true but it's not working. Can anyone help me?
thanks.
//jQuery code for DataTables
$(document).ready(function () {
$('#myTable').DataTable({
stateSave: true,
stateDuration: -1
});
$('#myTable').addClass("table table-hover");
});