0

我是 Primefaces 的新手,我遇到了这个问题。除非我移动 onclick 标记,否则无法执行该操作。

    <p:commandButton value="Détail " action="#{Allcar.gethistorique}" onclick="detail();suppcar.disable();modifscar.disable();comptecar.disable();detcar.disable()"
        id="deta" widgetVar="detcar" disabled="true">
</p:commandButton>
4

1 回答 1

0

您将 commandButton 最初设置为 disable="true"。如果禁用,它将不会提交。如果您省略 disabled="true",它对我有用(尽管我只在 onclick 中使用 detcar.disable())

<p:commandButton value="Détail " action="#{Allcar.gethistorique}" onclick="detcar.disable()"
            id="deta" widgetVar="detcar">
    </p:commandButton>
于 2013-06-14T16:37:05.870 回答