Hi,
On this example: http://jlynch7.github.com/SlickGrid/examples/example-frozen-columns.html
press mouse button and scroll horizontally to the right, until the mouse goes outside the table. The frozen columns will be hidden in the left side, and you get empty space on right.
This issue appear only in Chrome and Safari (for mac and windows).
Later edit:
The problem was appear because .slick-pane have width:100%;
quick fix for this:
$paneWidth = $('.slick-viewport.slick-viewport-top.slick-viewport-right').width();
$('.slick-pane.slick-pane-top.slick-pane-right').width($paneWidth);
$('.slick-pane.slick-pane-header.slick-pane-right').width($paneWidth);
Hi,
On this example: http://jlynch7.github.com/SlickGrid/examples/example-frozen-columns.html
press mouse button and scroll horizontally to the right, until the mouse goes outside the table. The frozen columns will be hidden in the left side, and you get empty space on right.
This issue appear only in Chrome and Safari (for mac and windows).
Later edit:
The problem was appear because .slick-pane have width:100%;
quick fix for this:
$('.slick-pane.slick-pane-top.slick-pane-right').width($paneWidth);
$('.slick-pane.slick-pane-header.slick-pane-right').width($paneWidth);