Fixed columns in iphone makes an overscrolling of the body table

Fixed columns in iphone makes an overscrolling of the body table

shirashira Posts: 1Questions: 1Answers: 0

Hi,

I'm using the fixed columns option.
var table = $('.table tbody th').closest('.table').DataTable({
"paging": false,
"ordering": false,
"info": false,
"searching": false,
scrollY: false,
scrollX: true,
scrollCollapse: false,
fixedColumns: {
leftColumns: 1,
rightColumns: 0
}
});

This workes fine in Android and windows, ones I run it on iphone, I get overscroll of the original table. which means the first column that need to be behind the fixed first column is moving. How can I prevent this action to happend?

Thanks
Shira

This discussion has been closed.