Advertisement
Guest User

jsf

a guest
Dec 6th, 2013
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. <?xml version="1.0" encoding="ISO-8859-1" ?>
  2. <!DOCTYPE html>
  3. <html xmlns="http://www.w3c.org/1999/xhtml"
  4. xmlns:h="http://java.sun.com/jsf/html"
  5. xmlns:p="http://primefaces.org/ui"
  6. xmlns:pt="http://xmlns.jcp.org/jsf/passthrough">
  7.  
  8.  
  9.  
  10. <h:head>
  11.  
  12. <title>Insert title here</title>
  13.  
  14.  
  15.  
  16. </h:head>
  17.  
  18.  
  19.  
  20.  
  21. <h:body>
  22.  
  23.  
  24. <h:form>
  25.  
  26.  
  27.  
  28. <h:panelGrid columns="2">
  29.  
  30. <h:outputText value="Data"/>
  31. <p:calendar pattern="dd/MM/yyyy" locale ="pt_BR" value="#{pessoaMB.pessoa.data}"/>
  32.  
  33. <h:outputLabel value="Endereco:"/>
  34. <h:inputText id="txtEndereco" value="#{pessoaMB.pessoa.endereco}"/>
  35.  
  36. <h:outputText value="Nome"/>
  37. <h:inputText id="txtNome" value="#{pessoaMB.pessoa.nome}"/>
  38.  
  39. <h:commandButton value="Inserir" action="#{pessoaMB.inserir}"/>
  40. <h:commandButton value="Listar" action="#{pessoaMB.listar}" />
  41.  
  42. </h:panelGrid>
  43.  
  44.  
  45.  
  46. <h:dataTable value="#{pessoaMB.listar}" var="p">
  47.  
  48. <h:column>
  49. <h:outputText value="#{p.nome}"/>
  50. </h:column>
  51.  
  52.  
  53. <h:column>
  54. <h:outputText value="#{p.endereco}"/>
  55. </h:column>
  56.  
  57.  
  58.  
  59. </h:dataTable>
  60.  
  61.  
  62.  
  63.  
  64.  
  65. </h:form>
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72. </h:body>
  73. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement