Advertisement
Guest User

Untitled

a guest
Feb 12th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 KB | None | 0 0
  1. <h:panelGroup>
  2. <p:outputLabel value="#{bundle.fatcaPolicyIdLabel}" style= "margin-right: 68px; color: #2A6EBB; " />
  3. <p:inputText id="policyId" value="#{policyPaymentController.selected.policy1Num}" required="true" label="#{bundle.fatcaPolicyIdLabel}"
  4. style="text-transform: uppercase" >
  5. <f:validateLength maximum="#{foreignPartyController.selected.sourceSystem eq 'C-CAPSIL' ? 6 : 10}" />
  6. <p:ajax event="blur" listener="# {foreignPartyController.checkForDuplicateRecord}" >
  7. <p:confirm icon="ui-icon-alert" />
  8. </p:ajax>
  9. </p:inputText>
  10. </h:panelGroup>
  11.  
  12.  
  13.  
  14. <h:form id="recordDecisionForm" >
  15. <p:confirmDialog id="recordDecisionDialog" widgetVar="RecordDecisionDlg" global="true" showEffect="fade" hideEffect="fade"
  16. header="Record Exists Confirmation" style="text-wrap: normal !important; color: #2A6EBB !important;" >
  17. <h:outputText value="#{bundle.fatcaRecordExistConfirmationMessage}" escape="false" />
  18. <br></br>
  19. <div id="recordDecisionButtonDialogDiv" align="center">
  20. <p:commandButton value="Yes" type="button" styleClass="ui-confirmdialog-yes" icon="ui-icon-check" />
  21. <p:commandButton value="No" type="button" styleClass="ui-confirmdialog-no" icon="ui-icon-close" />
  22. </div>
  23. </p:confirmDialog>
  24. </h:form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement