我有一个文本字段和一个复选框。在选择组合框时,光标无论其位置如何都应该来到文本字段。是否可能
如果是,如何在gwt
中完成答案 0 :(得分:3)
这将做你想要的:
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);
}
});