我在项目中使用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”
有条件地渲染每一行的复选框