Advertisement
Guest User

Untitled

a guest
Sep 30th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. <p:rowExpansion>
  2. <p:dataTable id="expanded" value="#{impressaoBean.listaItens}" var="item" styleClass="processamentoExpanded" >
  3.  
  4. <p:column width="30" style="text-align:center">
  5. <h:outputText value="#{item.itemFormatado}" />
  6. </p:column>
  7.  
  8. <p:column width="20" style="text-align:center">
  9. <h:outputText value="#{item.produtoID.nomeProduto}" />
  10. </p:column>
  11.  
  12. <p:column width="20" style="text-align:center">
  13. <h:outputText value="#{item.quantidade}" />
  14. </p:column>
  15.  
  16. <p:column width="20" style="text-align:center">
  17. <p:selectBooleanCheckbox value="#{item.impressoBoolean}"
  18. disabled="#{item.impressoBoolean}">
  19. </p:selectBooleanCheckbox>
  20. </p:column>
  21. </p:dataTable>
  22. </p:rowExpansion>
  23.  
  24. public Boolean getImpressoBoolean(){
  25. boolean impressoBoolean = false;
  26. if (impresso == 'S'){
  27. impressoBoolean = true;
  28. }
  29. return impressoBoolean;
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement