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