Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.82 KB | None | 0 0
  1. <?xml version='1.0' encoding='UTF-8' ?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml"
  4. xmlns:h="http://xmlns.jcp.org/jsf/html"
  5. xmlns:f="http://xmlns.jcp.org/jsf/core"
  6. xmlns:p="http://primefaces.org/ui">
  7. <h:head>
  8. <title>Regions(Admin)</title>
  9. <h:form>
  10. <div class="ui-g-12 ui-md-4" align="left">
  11. <h:commandButton value="Home Page" action="AdminPage"></h:commandButton>
  12. </div>
  13. </h:form>
  14. </h:head>
  15. <h:body>
  16. <div align="center" style="vertical-align:bottom">
  17. <h1>Regions</h1>
  18. <h:form id="form">
  19. <p:growl id="msgs" showDetail="true" />
  20. <p:accordionPanel>
  21. <p:tab title="Regions">
  22. <h:panelGrid columns="2" cellpadding="10">
  23. <h:dataTable value="#{RegionBean.getRegionList()}" var="r" border="1" >
  24.  
  25.  
  26. <h:column>
  27. <f:facet name="header">
  28. Region ID
  29. </f:facet>
  30. #{r.regionID}
  31. </h:column>
  32.  
  33. <h:column>
  34. <f:facet name="header">
  35. Region Name
  36. </f:facet>
  37. #{r.regionName}
  38. </h:column>
  39.  
  40. <h:column>
  41. <f:facet name="header">
  42. Delete
  43. </f:facet>
  44. <h:commandButton value="Delete" action="#{r.delete()}"/>
  45. </h:column>
  46.  
  47. </h:dataTable>
  48. </h:panelGrid>
  49. </p:tab>
  50. </p:accordionPanel>
  51. </h:form>
  52. <br></br><br></br>
  53.  
  54. <h:form>
  55. <h:panelGrid columns="3" cellpadding="5">
  56. <p:outputLabel for="firstname" value="Enter Region : " />
  57. <p:inputText id="firstname" value="#{Region.regionName}" required="true" label="Firstname">
  58. <f:validateLength maximum="2" />
  59. </p:inputText>
  60. <p:message for="firstname" display="icon" />
  61. </h:panelGrid>
  62.  
  63. <h:commandButton value="Insert" action="#{Region.insert()}"/>
  64. <br></br>
  65. </h:form>
  66. </div>
  67. </h:body>
  68. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement