根据var渲染数据表的行

时间:2016-04-20 16:39:46

标签: jsf primefaces

我在项目中使用primeface而且我有这个dataTable

<p:dataTable 
            id="list"
            var="agendamento" 
            value="#{agendamentoListagemManagedBean.agendamentoDataModel}"
            rowKey="#{agendamento.id}"
            selection="#{solicitacaoManagedBean.agendamentosSelecionados}"
            lazy="true">

        <p:column selectionMode="multiple" 
            style="width:20px;text-align:center"
            rendered="#{ !agendamentoManagedBean.isAgendamentoLivreParaCopiar(agendamento)}"/>

        <p:column width="70" headerText="#">
            <h:outputText value="#{agendamento.id}" />
        </p:column>
</p:dataTable>

所以,我想根据“agendamento”

有条件地渲染每一行的复选框

0 个答案:

没有答案