我在vaadin中有两张桌子。一个是表mainTable。 另一个是ScrollTable freezeTable。 我需要两个表之间的同步滚动。如果我将垂直滚动mainTable,freezeTable应该滚动相同,但在水平滚动的情况下,我不想要任何同步滚动。 我从下面的vaadin论坛得到了一些想法。但由于一些不赞成使用的方法,我无法继续。
在 MyViewPage.java 中,我将这两个表添加为
addComponent(loadTables());
public HorizontalSplitPanel loadTables(){
final HorizontalSplitPanel splitPanel = new HorizontalSplitPanel();
Table mainTable = new Table();
ScrollTable freezeTable=new ScrollTable();
freezeTable.setDependentTable( mainTable );
freezeTable.setWidth( "300px" );
mainTable.setWidth( "800px" );
freezeTable.setContainerDataSource(myContainer);
freezeTable.setVisibleColumns(viscol);
freezeTable.setColumnHeaders(vishead);
freezeTable.setPageLength(15);
mainTable.setContainerDataSource(myAnotherContainer);
mainTable.setVisibleColumns(viscolmain);
mainTable.setColumnHeaders(visheadmain);
mainTable.setPageLength(15);
splitPanel.setFirstComponent(freezeTable);
splitPanel.setSecondComponent(mainTable);
return splitPanel;
}
ScrollTable类是这样的。
ScrollTable.java
package com.abhiram.app.myproject.freezetable;
import com.vaadin.data.Container;
import com.vaadin.server.PaintException;
import com.vaadin.server.PaintTarget;
import com.vaadin.shared.ui.Connect;
import com.vaadin.ui.Table;
@SuppressWarnings("serial")
public class ScrollTable extends Table{
private Table mainTable;
public ScrollTable()
{
super();
}
public void setDependentTable( Table mainTable)
{
this.mainTable= mainTable;
}
@Override
public void paintContent( PaintTarget target ) throws PaintException
{
target.addAttribute( "scrollPane", this );
if ( table != null ) target.addAttribute( "dependentTable", mainTable);
super.paintContent( target );
}
}
我已经创建了另一个类VMyScrollTable并像这样扩展了VScrollTable。
VMyScrollTable.java
package com.abhiram.app.myproject.freezetable.client.ui;
import com.google.gwt.event.dom.client.ScrollEvent;
import com.google.gwt.event.dom.client.ScrollHandler;
import com.abhiram.app.myproject.freezetable.ScrollTable;
import com.vaadin.client.ApplicationConnection;
import com.vaadin.client.UIDL;
import com.vaadin.client.ui.FocusableScrollPanel;
import com.vaadin.client.ui.VScrollTable;
import com.vaadin.shared.ui.Connect;
@Connect(com.abhiram.app.myproject.freezetable.ScrollTable.class)
public class VMyScrollTable extends VScrollTable{
public VMyScrollTable()
{
super();
}
@Override
public void updateFromUIDL( final UIDL uidl, final ApplicationConnection client )
{
super.updateFromUIDL(uidl,client );
final String tableId = uidl.getStringAttribute( "dependentTable" );
if ( tableId == null )
return;
String id = uidl.getStringAttribute( "scrollPane" );
VScrollTable scrollPane = (VScrollTable) client.getPaintable(id);
final FocusableScrollPanel scrollBody = (FocusableScrollPanel) scrollPane.getWidget(1);
scrollBody.addScrollHandler( new ScrollHandler()
{
@Override
public void onScroll( ScrollEvent event )
{
VMyScrollTable.this.onScroll( event );
VScrollTable dependentPane = (VScrollTable) client.getPaintable(tableId );
FocusableScrollPanel scrollToBeBody = (FocusableScrollPanel) dependentPane.getWidget( 1 );
scrollToBeBody.setScrollPosition( scrollBody.getScrollPosition() );
}
} );
}
}
此问题 VScrollTable 类没有像 updateFromUIDL(...)这样的方法,而 ApplicationConnection 没有像getPaintable(String)这样的方法。 因此我无法继续。请任何人帮我如何做到这一点。
答案 0 :(得分:1)
您走在正确的轨道上,但您似乎将Widget
与ComponentConnector
混为一谈。这是一个可以从您的代码修改的工作版本:
ScrollTable.java
- 与您的相同
public class ScrollTable extends Table {
private Table mainTable;
public void setDependentTable(Table mainTable) {
this.mainTable = mainTable;
}
@Override
public void paintContent(PaintTarget target) throws PaintException {
target.addAttribute("scrollPane", this);
if (mainTable != null) {
target.addAttribute("dependentTable", mainTable);
}
super.paintContent(target);
}
}
ScrollTableConnector.java
- 这是位于Widget
和服务器
@Connect(ScrollTable.class)
public class ScrollTableConnector extends TableConnector implements
ScrollHandler {
private VScrollTable dependentPane = null;
@Override
public void updateFromUIDL(UIDL uidl, ApplicationConnection client) {
super.updateFromUIDL(uidl, client);
String tableId = uidl.getStringAttribute("dependentTable");
if (tableId == null) {
return;
}
if (dependentPane == null) {
FocusableScrollPanel scrollBody = (FocusableScrollPanel) getWidget()
.getWidget(1);
scrollBody.addScrollHandler(this);
}
dependentPane = ((TableConnector) client.getConnector(tableId, 0))
.getWidget();
}
@Override
public void onScroll(ScrollEvent event) {
FocusableScrollPanel scrollBody = (FocusableScrollPanel) getWidget()
.getWidget(1);
FocusableScrollPanel scrollToBeBody = (FocusableScrollPanel) dependentPane
.getWidget(1);
scrollToBeBody.setScrollPosition(scrollBody.getScrollPosition());
}
}
......就是这样。无需修改Widget;相反,我们直接重用VScrollTable。并且您的原始测试UI应该按原样运行,因为服务器端的任何内容都没有更改。
现在,作为ScrollTableConnector
的{{1}}是客户端代码,应该放在客户端软件包中 - 即widgetset的源路径。例如,如果您的ComponentConnector
文件位于包*.gwt.xml
中,com.example.foo
应该转到包ScrollTableConnector
或其中一个子包。这样,widgetset编译器就会知道在哪里查找它。
最后,请记住重新编译您的widgetset。如果您正在使用Vaadin Eclipse插件,只需单击Compile Widgetset按钮。如果您使用的是Maven,请运行com.example.foo.client
。