Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 vaadin 7 开发一个应用程序,我想在其中几乎一直关注一个文本字段。我现在看到了两种可能性。
我更喜欢选项 2,但还没有找到我必须在哪里添加一些 Listener/Handler 或者我必须重写什么函数才能一直调用焦点函数。
选项2可能吗?如果是,如何?
先感谢您
您也可以尝试使用 BlurListener。
final TextField tf = new TextField(); layout.addComponent(tf); tf.focus(); tf.addBlurListener(new FieldEvents.BlurListener() { @Override public void blur(FieldEvents.BlurEvent event) { if (fieldShouldBeFocused) tf.focus(); } });