GWT Celltable IE9问题

GWT Celltable IE9问题,gwt,gwt-2.5,Gwt,Gwt 2.5,当我对celltable中的TextInputCell使用KeyboardSelectionPolicy.DISABLED时,事件不会正确触发,因此不会始终调用FieldUpdater 我的代码片段如下所示 CellTable<String> cellTable = new CellTable<String>(); cellTable.setKeyboardSelectionPolicy(KeyboardSelectionPolicy.DISABLED); Colu

当我对celltable中的TextInputCell使用KeyboardSelectionPolicy.DISABLED时,事件不会正确触发,因此不会始终调用FieldUpdater

我的代码片段如下所示

 CellTable<String> cellTable = new CellTable<String>();
 cellTable.setKeyboardSelectionPolicy(KeyboardSelectionPolicy.DISABLED);
 Column<String, String> column = new Column<String, String>(new TextInputCell()) {
@Override
public String getValue(String object) {
    //Do something
}
};
column.setFieldUpdater(new FieldUpdater<String, String>() {

@Override
public void update(int index, String object, String value) {
    //Do something
}
});
cellTable.addColumn(column);
CellTable CellTable=new CellTable();
cellTable.setKeyboardSelectionPolicy(KeyboardSelectionPolicy.DISABLED);
Column Column=新列(new TextInputCell()){
@凌驾
公共字符串getValue(字符串对象){
//做点什么
}
};
column.setFieldUpdater(新的FieldUpdater(){
@凌驾
公共void更新(int索引、字符串对象、字符串值){
//做点什么
}
});
cellTable.addColumn(column);

我是唯一一个面临这个问题的人还是我做错了什么?

是的,我是对的,这在gwt问题跟踪中有报道

我在跟踪gwt已知的IE问题时发现了这一点


我还没有尝试过这个,但据报道。如果我是你,我会寻找问题跟踪器。

我记得在谷歌问题跟踪器中看到过这一点,如果我找到了,我会发布链接。谢谢你让我知道。我会跟踪的。