0

在 GWT Celltable 中,编辑 EditTextCell 时默认选择文本框值,如何删除此默认选择?

您也可以查看 EditText 的这个 celltable 展示,

http://gwt.googleusercontent.com/samples/Showcase/Showcase.html#!CwCellSampler

4

1 回答 1

0

当您单击 时EditTextCell,它会调用edit聚焦并选择内容的方法:

这里

protected void edit(Context context, Element parent, String value) {
    setValue(context, parent, value);
    InputElement input = getInputElement(parent);
    input.focus();
    input.select(); /* HERE */
}

也许您可以创建一个自定义类扩展EditTextCell,在没有最后一行的情况下覆盖此方法...

于 2013-10-15T09:44:40.833 回答