将光标焦点转移到复选框选择上的 textField
Shift the cursor focus on to a textField on checkbox selection
我有一个文本字段和一个检查 box.On 选择组合框光标无论其位置如何都应该到达文本 field.Is 可能
如果是的话如何在gwt中完成
这会做你想做的事:
final TextBox textBox = new TextBox();
final CheckBox checkBox = new CheckBox();
checkBox.addValueChangeHandler(new ValueChangeHandler<Boolean>()
{
@Override
public void onValueChange(ValueChangeEvent<Boolean> event)
{
/* Do something with the event */
/* Then set the focus */
textBox.setFocus(true);
}
});
我有一个文本字段和一个检查 box.On 选择组合框光标无论其位置如何都应该到达文本 field.Is 可能
如果是的话如何在gwt中完成
这会做你想做的事:
final TextBox textBox = new TextBox();
final CheckBox checkBox = new CheckBox();
checkBox.addValueChangeHandler(new ValueChangeHandler<Boolean>()
{
@Override
public void onValueChange(ValueChangeEvent<Boolean> event)
{
/* Do something with the event */
/* Then set the focus */
textBox.setFocus(true);
}
});