ColReorder not working with infinite scrolling

ColReorder not working with infinite scrolling

user1212user1212 Posts: 6Questions: 0Answers: 0
edited February 2014 in General
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.

Replies

  • allanallan Posts: 63,498Questions: 1Answers: 10,471 Site admin
    Infinite scrolling was deprecated in v1.9 and is removed in 1.10. I'm afraid that this is not a bug that will be fixed as part of that core software.

    Allan
This discussion has been closed.