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 和 MGWT 的初学者。在我的项目中,我要求我必须启用和禁用 MGWT 按钮。当前版本的 MGWT 中没有给出直接方法。我在 GWT 按钮中看到了它。
com.google.gwt.user.client.ui.Button b = new com.google.gwt.user.client.ui.Button(); b.setEnable(boolean);
但在 MGWT 中没有给出。请帮助我,我们如何使用 CSS/其他东西来实现上述功能
我不是 MGWT 的人。并且必须有一些更好的解决方案。您可以尝试低级元素操作:
Button mgwtButton; mgwtButton.getElement().setAttribute("disabled", "disabled");
如果您采用此解决方案,最好稍后准备您CustomButton使用其他setEnabled(boolean enabled)方法扩展 MGWT Button 以获得更好的 API。
CustomButton
setEnabled(boolean enabled)