我有一个gwt-ext EditorGridPanel,通过点击一个单元格,你可以编辑它的值。光标位于单元格的beginnig,但是如果用户单击它,我想在此单元格中选择整个文本。知道怎么处理这个吗?
我尝试了一些听众等但是没有人为我工作。
答案 0 :(得分:1)
对不起我的英语,使用Ext-GWT(GXT)它可以做到这一点:
final TextField<String> text = new TextField<String>();
text.setAllowBlank(false);
CellEditor textEditor = new CellEditor(text);
textEditor.addListener(Events.StartEdit, new Listener<EditorEvent>() {
public void handleEvent(EditorEvent be) {
text.setSelectOnFocus(true);
}
});
column.setEditor(textEditor);
configs.add(column);
在GWT-Ext中找到方法,我觉得会这样......我希望这有帮助......