Advertisement
Guest User

Untitled

a guest
Jul 21st, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <p:dataTable var="car" value="#{dtBasicView.cars}">
  2. <p:column headerText="Id">
  3. <h:outputText value="#{car.id}" />
  4. <div></div>
  5. </p:column>
  6.  
  7. <p:column headerText="Year">
  8. <h:outputText value="#{car.year}" />
  9. <div></div>
  10. </p:column>
  11.  
  12. <p:column headerText="Brand">
  13. <h:outputText value="#{car.brand}" />
  14. <div></div>
  15. </p:column>
  16.  
  17. <p:column headerText="Color">
  18. <h:outputText value="#{car.color}" />
  19. <div></div>
  20. </p:column>
  21. </p:dataTable>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement