I am trying to get the listgrid display all rows and without a scrollbar. It does, but shows up a gap in scrollbar. Is there a way to avoid that gap and show no scrollbar, just like it is in this sample.
http://www.smartclient.com/smartgwt/showcase/#grid_autofit_rows
setLeaveScrollbarGap(false);
setOverflow(Overflow.VISIBLE);
setBodyOverflow(Overflow.VISIBLE);
setShowAllRecords(true);
I have invoked all of these statements on Grid, but I still get a gap for the scrollbar.
http://www.smartclient.com/smartgwt/showcase/#grid_autofit_rows
setLeaveScrollbarGap(false);
setOverflow(Overflow.VISIBLE);
setBodyOverflow(Overflow.VISIBLE);
setShowAllRecords(true);
I have invoked all of these statements on Grid, but I still get a gap for the scrollbar.
Comment