在 GWT Celltable 中,编辑 EditTextCell 时默认选择文本框值,如何删除此默认选择?
您也可以查看 EditText 的这个 celltable 展示,
http://gwt.googleusercontent.com/samples/Showcase/Showcase.html#!CwCellSampler
在 GWT Celltable 中,编辑 EditTextCell 时默认选择文本框值,如何删除此默认选择?
您也可以查看 EditText 的这个 celltable 展示,
http://gwt.googleusercontent.com/samples/Showcase/Showcase.html#!CwCellSampler
当您单击 时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
,在没有最后一行的情况下覆盖此方法...