Advertisement
Guest User

Untitled

a guest
Apr 24th, 2014
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.84 KB | None | 0 0
  1. <ui:composition
  2. xmlns="http://www.w3.org/1999/xhtml"
  3. xmlns:h="http://java.sun.com/jsf/html"
  4. xmlns:f="http://java.sun.com/jsf/core"
  5. xmlns:ui="http://java.sun.com/jsf/facelets"
  6. xmlns:p="http://primefaces.org/ui" >
  7.  
  8. <h:panelGrid columns="3" width="100%" border="0" columnClasses="colC1,colC2">
  9. <h:outputText value="Code: " style="margin-right:20px;"/>
  10. <p:inputText id="idCodProvider" value="#{storeBean.au.code}" size="84"/>
  11.  
  12. <h:outputText value="Name: " style="margin-right:20px;"/>
  13. <p:inputText id="idName" value="#{storeBean.au.name}" size="84"/>
  14.  
  15. <p:commandLink id="idAdressLink" style="margin-right:20px;" actionListener="#{storeBean.selectAdress}"
  16. update=":idFormAdress:idPgADressStore" >
  17. <h:outputText value="Adress:" />
  18. </p:commandLink>
  19. <p:inputText id="idAdressStore" label="Adress" value="#{storeBean.au.adressStore}" size="84"/>
  20. <h:outputText value="&#160;&#160;&#160;" />
  21. </h:panelGrid>
  22.  
  23. <ui:composition xmlns="http://www.w3.org/1999/xhtml"
  24. xmlns:h="http://java.sun.com/jsf/html"
  25. xmlns:f="http://java.sun.com/jsf/core"
  26. xmlns:ui="http://java.sun.com/jsf/facelets"
  27. xmlns:p="http://primefaces.org/ui">
  28.  
  29. <h:panelGrid id="idPgAdressStore" columns="2" columnClasses="col1,col2">
  30. <h:outputLabel for="idAdress" value="Adress: " />
  31. <p:inputText id="idAdress" label="Adress" size="40" value="#{adressBean.au.strAdress}"/>
  32. <f:facet name="footer">
  33. <h:panelGrid width="100%" columns="2" style="text-align:center">
  34. <p:commandButton id="idBtSaveDir" value="Save" actionListener="#{storeBean.saveAdress}"
  35. update=":idFormAdress,:idFormStore" onComplete="PF('dlgDirStore').hide()"/>
  36. <p:commandButton id="idBtCancelDir" value="Cancel" type="button" onclick="PF('dlgDirStore').hide()"/>
  37. </h:panelGrid>
  38. </f:facet>
  39. </h:panelGrid>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement