如何禁用 GWT ValueListBox?
ValueListBox 没有实现 HasEnabled 接口,所以我无法禁用/启用它。
尽管ListBox实现了HasEnabled,但getListBox方法在ValueListBox中是私有的。所以我无法获取内部列表框来禁用它。
有人知道如何解决这个问题吗?提前致谢。
ValueListBox doesn't implement HasEnabled interface, so I can't disable/enable it.
And although ListBox implements HasEnabled, method getListBox is private in ValueListBox. So I cannot get inner listBox, to disable it.
Anyone knows how to solve this problem? Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以执行以下操作:
Rest GWT 应添加一个方法,但目前尚不存在。
You can do the following:
Rest GWT should add a method, which isn't there for now.
你可以简单地这样做:
我已经尝试过并且有效。
You can simply do this:
I've tried it and it works.