ColReorder not working with infinite scrolling
ColReorder not working with infinite scrolling
Whenever I use infinite scrolling, the ColReorder stops working
$.getJSON(path, function(data){
$('#table1').dataTable({
'aaData': data,
'bScrollInfinite': true,
'bColumnCollapse': true,
'sScrollY': '200px',
'sDom': 'RflrTip'
})
});
The ColReorder starts working again if i comment out the lines for
// 'bScrollInfinite': true,
// 'bColumnCollapse': true,
// 'sScrollY': '200px',
I am reading data from a JSON input.
Please advise.
$.getJSON(path, function(data){
$('#table1').dataTable({
'aaData': data,
'bScrollInfinite': true,
'bColumnCollapse': true,
'sScrollY': '200px',
'sDom': 'RflrTip'
})
});
The ColReorder starts working again if i comment out the lines for
// 'bScrollInfinite': true,
// 'bColumnCollapse': true,
// 'sScrollY': '200px',
I am reading data from a JSON input.
Please advise.
This discussion has been closed.
Replies
Allan