Guest User

Untitled

a guest
May 27th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. <p:column filterBy="#{projeto.listaLinhaPesquisas[0].nome}" headerText="Linha de Pesquisa">
  2. <f:facet name="filter">
  3. <p:selectOneMenu onchange="PF('projetoTable').filter()" >
  4. <f:selectItem itemLabel="Selecione..." itemValue="#{null}" noSelectionOption="true"/>
  5. <f:selectItems value="#{gestaoProjetosBean.listaLinhaPesquisas}"
  6. var="linhaPesquisa" itemLabel="#{linhaPesquisa.nome}"
  7. itemValue="#{linhaPesquisa.nome}" />
  8. </p:selectOneMenu>
  9. </f:facet>
  10. <p:dataList value="#{projeto.listaLinhaPesquisas}" var="linhaPesquisa">
  11. <h:outputText value="#{linhaPesquisa.nome}"/>
  12. </p:dataList>
  13. </p:column>
Add Comment
Please, Sign In to add comment