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.
是否可以检测到小部件外部何时发生单击事件,我创建了一个小部件来为用户显示文本,每个用户的文本数量不同,并将其添加到我的垂直面板中。用户将能够编辑此文本并添加新文本。
现在只有当他们点击一个按钮时,一个文本才会从编辑模式被锁定,是否可以跳过这一步并说如果他们点击下一个文本小部件块,前一个块被锁定?
我如何阅读移动到下一个小部件的动作?
该事件称为blur event。当小部件丢失其focus.
blur event
focus
textBox.addBlurHandler(new BlurHandler() { @Override public void onBlur(BlurEvent event) { //DO something } });