0

GXT 3 问题:

有谁知道为什么当我选择网格上的任何行时不会触发这两个处理程序?SelectionModel 为 GridSelectionModel,设置为单选。

是否需要进一步申报?就这么简单,不是吗。我为 GXT 2.2 添加事件侦听器没有问题,但 GXT 3 有一些变化。这些事件用于检测行选择,不是吗?

SelectionChangedHandler<Summary> gridSelectionChangedHandler = 
  new SelectionChangedHandler<Summary>() {
    public void onSelectionChanged(
      SelectionChangedEvent<Summary> event) {
        Summary rec = event.getSelection().get(0);
        Window.alert("Row = "+ rec.getId());    
    }
  };

SelectionHandler<Summary> gridSelectionHandler =
  new SelectionHandler<Summary>() {
    public void onSelection(SelectionEvent<Summary> event) {
      Summary rec = event.getSelectedItem();
      Window.alert("Row = "+ rec.getId());    
    }
  };

public SummaryViewImpl() {
  uiBinder.createAndBindUi(this);
  this.grid.addSelectionChangedHandler(gridSelectionChangedHandler);
  this.grid.addSelectionHandler(gridSelectionHandler);
}

但是,我对 RowClickEvent 没有任何问题,因为以下内容正在触发:

@UiHandler({ "grid" })
void onRowClick(RowClickEvent event){
    int row = event.getRowIndex();
    Window.alert("Row = "+ row);        
}

grid 是 SummaryGrid 的一个实例:

public class SummaryGrid
extends Grid<Summary>{


  {
    this.sm = new GridSelectionModel<Summary>();
    this.sm.setSelectionMode(SelectionMode.SINGLE);
  }


  blah ... blah ...

  public HandlerRegistration addSelectionChangedHandler(SelectionChangedHandler<Summary> handler){
    return this.getSelectionModel().addSelectionChangedHandler(handler);
  }

  public HandlerRegistration addSelectionHandler(SelectionHandler<Summary> handler){
    return this.getSelectionModel().addSelectionHandler(handler);
  }

  blah ... blah ...
}
4

2 回答 2

3

试试这个grid.getSelectionModel().addSelectionChangedHandler

不确定是否需要先设置选择模式,但我的工作代码如下:

grid.getSelectionModel().setSelectionMode(SelectionMode.SINGLE);

grid.getSelectionModel().addSelectionChangedHandler(new SelectionChangedHandler<Summary>() {
...
}
于 2013-03-20T01:50:21.253 回答
0

没关系!犯了访问本地私有变量而不是访问属性获取/设置方法的错误。

在扩展类中,执行以下操作:

this.setSelectionModel(selectionModel);
this.getSelectionModel().setSelectionMode(SelectionMode.SINGLE);

而不是这样做:

this.sm =selectionModel;
this.sm.setSelectionMode(SelectionMode.SINGLE);

因为,setter 必须绑定在我直接访问 sm 变量时未执行的选择模型。

强化课程:在扩展类时,应该访问 setter/getter,而不是访问它们关联的局部变量。

于 2013-03-20T02:28:01.387 回答