After enabling vertical scroll in the datatable to load large datasets, datatable doesn't load rows
After enabling vertical scroll in the datatable to load large datasets, datatable doesn't load rows
oTable = $('#myDataTable').dataTable({
"bServerSide": true,
"scrollY": "200px",
"paging":false,
"sAjaxSource": "/Datatable/GetTargetedSkills",
"iDisplayLength": 50,
"bAutoWidth": false,
"bScrollInfinite": true,
"bScrollCollapse": true,
"sScrollY": "600px",
This is my code i have no paging enabled i want to combine both paging and scrolling.
After reaching the maximum scroll position the datatable is not calling the controller for more data. I mean it doesn,t postback to get the data. Can anyone help me with this?