Scrollbar positioning concerns

Scrollbar positioning concerns

TheSisbTheSisb Posts: 18Questions: 0Answers: 0
edited October 2012 in General
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

Replies

  • allanallan Posts: 63,535Questions: 1Answers: 10,475 Site admin
    Very very odd. Can you link to a page showing the issue please so we can reproduce and debug it?

    Allan
This discussion has been closed.