現在、JSF 2.0 と jquery で Web アプリケーションを実行しています。さらに、jquery ダイアログを追加しました。モデル ダイアログは、エラーなしで適切に開いています。ただし、ダイアログのajax入力値で送信しようとすると、サーバー側に投稿されません。
以下の入力テキストとボタンを参照して、値を送信してください。
入力:
<h:inputText id="routingNumber_1" required="true" class="routingNo"
value="#{paymentInfoController.modelBankInfo.routingNumber}"
valueChangeListener="#{paymentInfoController.getBankByRoutingNumber}">
</h:inputText>
ボタン:
<h:commandLink styleClass="fll btn2 btnOff mr savepannextbutton"
id="savepannextbutton" style=" align:left;height: 40px; width: 70px;"
value="Confirm" title="Confirm">
<f:attribute name="bank"
value="#{paymentInfoController.modelBankInfo.routingNumber}">
</f:attribute>
<f:ajax execute="@form" onevent="addBankshowSuccessMessage" event="click"
render=":formPaymentInformation:paymentInformationDataTable"
listener="#{paymentInfoController.addBank}">
</f:ajax>
</h:commandLink>