Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 2

<ui:composition xmlns="http://www.w3.

org/1999/xhtml"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:f="http://xmlns.jcp.org/jsf/core"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:p="http://primefaces.org/ui">

<p:panel header="Participante" style="margin-bottom:20px">


<p:panelGrid
columns="6"
columnClasses="ui-grid-col-2, ui-grid-col-2">

<p:outputLabel value="Participante:" for="txtParticipante" />


<p:autoComplete id="txtParticipante" value="#{acaoBean.participante.
pessoa}" size="50" converter="#{converterPessoa}"
completeMethod="#{acaoBean.completa}" var="p" itemL
abel="#{p.nome}" itemValue="#{p}"
forceSelection="true" />

<p:outputLabel value="Tipo de participao" />


<p:selectOneMenu id="txtParticipacao" value="#{acaoBean.participante
.participacao}" converter="#{converterParticipacao}">
<f:selectItem itemLabel="Selecione uma opo"/>
<f:selectItems value="#{dicionarioBean.listaParticipacao}" var="
q" itemValue="#{q}" itemLabel="#{q.descricao}" />
<p:ajax event="change" update="txtParticipacao" />
</p:selectOneMenu>

</p:panelGrid>
<div id="panelAdicionar" style="text-align:center;margin-top:10px;margin
-bottom: 10px">
<p:commandButton value="Adicionar" action="#{acaoBean.addPartici
pante()}" update="dtParticipantes" readonly="#{acaoBean.somenteLeitura}" />
</div>
<p:panel header="Lista " style="margin-bottom:20px">
<p:dataTable id="dtParticipantes"
var="y"
selectionMode="single"
rowKey="#{y.id}"
selection="#{acaoBean.participante}"
value="#{acaoBean.acao.participanteCollection}">
<p:column headerText="Nome">
<h:outputText value="#{y.pessoa.nome}" />
</p:column>
<p:column headerText="Tipo de participao">
<h:outputText value="#{y.participacao.descricao}"/>
</p:column>

<p:column headerText="Homologar" >


<p:selectBooleanCheckbox value="#{y.homologado}" >
<p:ajax update="@form" listener="#{acaoBean.addCheckPar
ticipante(y)}"/>
</p:selectBooleanCheckbox>
</p:column>

</p:dataTable>
</p:panel>
</p:panel>
</ui:composition>

You might also like