gpt4 book ai didi

java - gwt setEnabled 未在 GoogleChrome 上执行

转载 作者:行者123 更新时间:2023-11-30 11:20:19 25 4
gpt4 key购买 nike

我有一堆 setReadOnly 函数,只有在我需要将窗口置于特殊状态时才会调用。

在该函数中,我没有调用任何其他函数或进行任何验证。这是我在该功能中拥有的示例。我只是更改了名称。

 public void enableEditMode() {

this.btnAjoutContribution.setEnabled(true);

this.btnPostal.setEnabled(true);
this.type = TypeEdition.TOUT;

// Research
this.noSearch.setReadOnly(true);
this.naSearch.setReadOnly(true);
this.prSearch.setReadOnly(true);
this.daSearch.setReadOnly(true);
this.noCSearch.setReadOnly(true);
this.datSearch.setReadOnly(true);
this.stSearch.setReadOnly(true);
this.modSearch.setReadOnly(true);
this.btnNSearch.setEnabled(false);

// Donr
this.1.setReadOnly(true);
this.2.setReadOnly(false);
this.3.setReadOnly(false);
this.4.setReadOnly(false);
this.5.setReadOnly(false);
this.6.setReadOnly(false);
this.7.setReadOnly(false);
this.8.setReadOnly(false);
this.9.setReadOnly(false);
this.10.setReadOnly(false);
this.11.setReadOnly(false);
this.12.setReadOnly(false);
this.13.setReadOnly(false);

//... about 100 more setReadOnly() on other stuff

//Aff impression. HERE is my problem
this.getActionButtonsWidget().getPrintButton().setVisible(true);
this.getActionButtonsWidget().getPrintButton().setEnabled(false);
}

我的问题是谷歌浏览器大约有一半时间不会执行我的最后两行。这是一个已知的错误?我已经在网上对其进行了研究,但还没有找到任何东西。我使用的是最新版本的 Google Chrome。

这在 firefox 和 ie 8、9、10 和 11 中完美运行

最佳答案

你可以使用

this.btnPostal.getElement().setAttribute("disabled", "disabled");

禁用按钮或输入。

关于java - gwt setEnabled 未在 GoogleChrome 上执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22790511/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com