我有一个简单的Cell类:
public class MyCell implements AbstractCell<MyDto> {
...
@Override
public void render(com.google.gwt.cell.client.Cell.Context context,
MyDto value, SafeHtmlBuilder sb) {
}
}
我如何收听MGWT TapEvent到这样的小区?
编辑:我不想使用MGWT提供的CellList我需要使用GWT的CellList,因为这使我能够使用数据提供者。
可以将一个触摸委托链接到Cell吗?
答案 0 :(得分:3)
您不能轻易地将GWwt触摸事件与GWT CellTable一起使用。
如果GWT-CellTable更加开放,你可以扩展它,从Mgwt-CellTable获取与触摸事件相关的代码,并将扩展类的容器设置为具有触控功能的小部件。但这是不可能的,因为您无法设置或更改GWT-CellTable的小部件。
因此,不必扩展GWT-CellTable,而是必须复制自己类中的所有代码,并添加来自Mgwt-Cell的触摸事件内容(请参阅UlTouchWidget和InternalTouchHandler代码)。但不方便的是,您必须将单元格表设置为移动设备,这是一项艰苦的工作。
另一种选择是扩展Mgwt-CellTable以使其使用数据提供者,但由于它扩展了Composite而不是AbstractHasData,所以你必须包装一个AbstractHasData并在其中填充所有的API。
最简单的选择是复制Mgwt-CellTable的代码并使其扩展AbstractHasData并实现一堆方法。使用这种方式,您将拥有一个移动外观小部件这对我有用:
// Copy mgwt CellList and change package and classname
package com.example;
// Make it extend AbstractHasData instead of Composite
public class MyCellList<T> extends AbstractHasData<T> {
/* Copy here all mgwt CellList code */
....
// Change the constructor to call the AbstractHasData one
public MyCellList(Cell<T> cell, ListCss css) {
super(new UlTouchWidget(),25, null);
main = (UlTouchWidget) getWidget();
css.ensureInjected();
this.cell = cell;
this.css = css;
internalTouchHandler = new InternalTouchHandler();
setStylePrimaryName(css.listCss());
}
// implement AbstractHasData methods
protected boolean dependsOnSelection() {
return false;
}
private Element fakeDiv = Document.get().createDivElement();
protected Element getChildContainer() {
return fakeDiv;
}
protected Element getKeyboardSelectedElement() {
return fakeDiv;
}
protected boolean isKeyboardNavigationSuppressed() {
return true;
}
protected void renderRowValues(SafeHtmlBuilder sb, List<T> values, int start,
SelectionModel<? super T> selectionModel)
throws UnsupportedOperationException {
render(values);
}
protected boolean resetFocusOnCell() {
return false;
}
protected void setKeyboardSelected(int index, boolean selected,
boolean stealFocus) {
}
}
答案 1 :(得分:-1)
一个例子,我如何在我的一个应用程序中使用它:
BarcodeCellSubType barcodeCellSubType = new BarcodeCellSubType();
celllist = new CellList<ScanDTO>(barcodeCellSubType);
celllist.addCellSelectedHandler(new CellSelectedHandler() {
@Override
public void onCellSelected(CellSelectedEvent event) {
//...
}
});
这就是我的方式...... BarcodeCellSubType扩展了BarcodeCell, BarcodeCell实现了Cell
或者您想在MyCell对象中收听?