/**
* Return a ScrollHandler to ensure the Header and Sidebar are repositioned
* according to the position of the scroll bars surrounding the GridWidget
*/
@Override
protected ScrollHandler getScrollHandler() {
return new ScrollHandler() {
public void onScroll( ScrollEvent event ) {
headerWidget.setScrollPosition( scrollPanel.getHorizontalScrollPosition() );
sidebarWidget.setScrollPosition( scrollPanel.getVerticalScrollPosition() );
}
};
}
VerticalDecoratedTemplateDataGridWidget.java 文件源码
java
阅读 30
收藏 0
点赞 0
评论 0
项目:drools-wb
作者:
评论列表
文章目录