1

私は2つのxhtmlを1つ持っています。しかし、どちらも正常に動作していません。保存ボタンをクリックすると、インポートボタンの確認ダイアログが出てきました。[インポート] ボタンをクリックしても、何も表示されませんでした。見逃したことはありますか?

               <td><p:commandButton type="button"
                 value="Save" id="cr1002_command_save"
                 onclick="confirmation.show()" ajax="false"
                 style="width: 80px;height: 24px">
              </p:commandButton> <p:confirmDialog id="confirmDialog"
                 message="#{msg.cr1002_prompt_confirm_save}" severity="alert"
                 widgetVar="confirmation" style="width: 70px;height: 27px">
                 <p:commandButton id="confirm" value="OK"
                    oncomplete="confirmation.hide()"
                    action="#{pc_Cr1002.doCr1002_command_saveAction}" ajax="false"
                    style="width: 80px;height: 24px" />
                 <p:commandButton id="decline" value="Cancel"
                    onclick="confirmation.hide()" type="button"
                    style="width: 80px;height: 24px" />
              </p:confirmDialog></td>
           <td></td>
           <td><p:commandButton type="button"
                 value="Import"
                 onclick="gowait('form1:cr1002_command_import')"
                 id="cr1002_command_import" ajax="false"
                 style="width: 80px;height: 24px"></p:commandButton>
                  <p:confirmDialog id="confirmDialog2"
                 message="Importing... Importing..." severity="alert"
                 widgetVar="confirmation" style="width: 70px;height: 27px">
                 <p:commandButton id="confirm2" value="OK"
                    oncomplete="confirmation.hide()"
                    action="#{pc_Cr1002.doCr1002_command_importAction}" ajax="false"
                    style="width: 80px;height: 24px" />
                 <p:commandButton id="decline2" value="Cancel"
                    onclick="confirmation.hide()" type="button"
                    style="width: 80px;height: 24px" />
              </p:confirmDialog>
           </td>
4

1 に答える 1

3

問題は同じwidgetVar attributeで、クライアント側でこの属性を使用すると、クライアント側で競合が発生します。次のようにコーディングする必要があります。

<td><p:commandButton type="button"
                 value="Save" id="cr1002_command_save"
                 onclick="confirmation.show()" ajax="false"
                 style="width: 80px;height: 24px">
              </p:commandButton> <p:confirmDialog id="confirmDialog"
                 message="#{msg.cr1002_prompt_confirm_save}" severity="alert"
                 widgetVar="confirmation" style="width: 70px;height: 27px">
                 <p:commandButton id="confirm" value="OK"
                    oncomplete="confirmation.hide()"
                    action="#{pc_Cr1002.doCr1002_command_saveAction}" ajax="false"
                    style="width: 80px;height: 24px" />
                 <p:commandButton id="decline" value="Cancel"
                    onclick="confirmation.hide()" type="button"
                    style="width: 80px;height: 24px" />
              </p:confirmDialog></td>
           <td></td>
           <td><p:commandButton type="button"
                 value="Import"
                 onclick="confirmation2.show()"
                 id="cr1002_command_import" ajax="false"
                 style="width: 80px;height: 24px"></p:commandButton>
                  <p:confirmDialog id="confirmDialog2"
                 message="Importing... Importing..." severity="alert"
                 widgetVar="confirmation2" style="width: 70px;height: 27px">
                 <p:commandButton id="confirm2" value="OK"
                    oncomplete="confirmation.hide()"
                    action="#{pc_Cr1002.doCr1002_command_importAction}" ajax="false"
                    style="width: 80px;height: 24px" />
                 <p:commandButton id="decline2" value="Cancel"
                    onclick="confirmation.hide()" type="button"
                    style="width: 80px;height: 24px" />
              </p:confirmDialog>
           </td>
于 2013-05-20T02:08:33.313 に答える