Scrollbar positioning concerns
Scrollbar positioning concerns
On my table the scrollbars seem to be positioned on top of my contents as opposed to outside my table.
Picture: https://www.dropbox.com/s/ay3fknel4vdawtn/weird2.png
Is there anyway to force the first kind of styling all around? I find it strange to see scrollbars where content should be.
My code
[code]
coolTable.dataTable({
'sPaginationType': 'full_numbers',
'sScrollY': '125px',
'sScrollX': '100%',
'bScrollCollapse': true,
'bStateSave': true,
'bProcessing': true,
'bServerSide': true,
'sAjaxSource': '/some/path/fakeTable.json',
'sAjaxDataProp': 'demo',
"isDeferLoading": 7,
// Fix left column
"fnInitComplete": function () {
new FixedColumns( poiTable );
}
});
[/code]
Thanks
Picture: https://www.dropbox.com/s/ay3fknel4vdawtn/weird2.png
Is there anyway to force the first kind of styling all around? I find it strange to see scrollbars where content should be.
My code
[code]
coolTable.dataTable({
'sPaginationType': 'full_numbers',
'sScrollY': '125px',
'sScrollX': '100%',
'bScrollCollapse': true,
'bStateSave': true,
'bProcessing': true,
'bServerSide': true,
'sAjaxSource': '/some/path/fakeTable.json',
'sAjaxDataProp': 'demo',
"isDeferLoading": 7,
// Fix left column
"fnInitComplete": function () {
new FixedColumns( poiTable );
}
});
[/code]
Thanks
This discussion has been closed.
Replies
Allan