如何禁用 GWT ValueListBox?

发布于 2024-11-05 03:00:13 字数 160 浏览 0 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

抱着落日 2024-11-12 03:00:13

您可以执行以下操作:

DOM.setElementPropertyBoolean(valueListBoxObject.getElement(), "disabled", boolean)

Rest GWT 应添加一个方法,但目前尚不存在。

You can do the following:

DOM.setElementPropertyBoolean(valueListBoxObject.getElement(), "disabled", boolean)

Rest GWT should add a method, which isn't there for now.

≈。彩虹 2024-11-12 03:00:13

你可以简单地这样做:

valueListBoxObject.getElement().setAttribute("disabled", "true");

我已经尝试过并且有效。

You can simply do this:

valueListBoxObject.getElement().setAttribute("disabled", "true");

I've tried it and it works.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文