Hello i am using Jquery data table to display a table from the server side. It was displaying on the client side but the paging buttons are all inactive. Please what am I doing wrong?
Below is me client side data table call:
$('#profileList').dataTable({
"bJQueryUI": true,
"bPaginate": true,
"sPaginationType": "full_numbers",
"bServerSide": true,
"sAjaxSource": "/SearchProfile/MySearchProfileAjaxHandler"
});
Looks like you might want to do something like this instead:
http://datatables.net/release-datatables/examples/server_side/pipeline.html
The question is how many values are sending back? Also, what kind of data are you sending back?