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.
我正在使用 GWT 文本框。
每当调用 textbox.setText() 方法时,我都想在其他类中执行一个操作。
每当调用 setText() 时,都不会触发 ValueChangeEvent。
是否有任何事件会被触发或有任何方法来实现这一点?
请帮忙
您可以尝试使用setValue(String value, boolean fireEvent) 方法
如果您查看该TextBox.seText()方法,您会发现,一直到实际的 DOM,都不会生成任何事件,因此您想要做的事情根本无法开箱即用。
TextBox.seText()
我看到两个选项: