svn changeset:23804/svn branch:6.8
return true;
}
} else {
+ if (scrollBody == null) {
+ return false;
+ }
int fakeheight = (int) Math.round(scrollBody.getRowHeight()
* totalRows);
int availableHeight = scrollBodyPanel.getElement().getPropertyInt(
@Override
public void setHeight(String height) {
+ boolean hadScrollbars = willHaveScrollbars();
this.height = height;
super.setHeight(height);
setContainerHeight();
+ if (hadScrollbars != willHaveScrollbars()) {
+ triggerLazyColumnAdjustment(true);
+ }
+
if (initializedAndAttached) {
updatePageLength();
}