Advertisement
Guest User

Untitled

a guest
Aug 16th, 2015
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.79 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. <h:head>
  7. <title>Data Table</title>
  8. </h:head>
  9. <h:body>
  10. <h:form>
  11. <h:panelGrid columns="2">
  12. <h:outputLabel for="txtValor" value="Valor:"/>
  13. <h:inputText id="txtValor" value="#{dato.valor}" label="Valor" required="true"/>
  14.  
  15. <h:outputLabel for="txtNombre" value="Nombre:"/>
  16. <h:inputText id="txtNombre" value="#{dato.nombre}" label="Nombre" required="true"></h:inputText>
  17.  
  18. <h:outputLabel for="btnAgregar"/>
  19. <h:commandButton id="btnAgregar" action="#{holaMundo.addValor(dato)}" value="Añadir"/>
  20. </h:panelGrid>
  21. </h:form>
  22. <h:dataTable id="tabla" value="#{holaMundo.datos}" var="dato">
  23. <h:column>
  24. <f:facet name="header">
  25. <h:outputText value="valor"/>
  26. </f:facet>
  27. <h:outputText value="#{dato.valor}"/>
  28. </h:column>
  29. <h:column>
  30. <f:facet name="header">
  31. <h:outputText value="Nombre"/>
  32. </f:facet>
  33. <h:outputText value="#{dato.nombre}"/>
  34. </h:column>
  35. <h:column>
  36. <h:form>
  37. <h:commandButton id="btnBorrar" value="Borrar" action="#{holaMundo.removeValor(dato)}"/>
  38. </h:form>
  39. </h:column>
  40. </h:dataTable>
  41. <br/>
  42.  
  43.  
  44. </h:body>
  45. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement