Pessoal,
Estou tentando implementar o visible na tag column do ADF mas ta díficil. Mesmo retornando um objeto preenchido a coluna não aparece. Alguém sabe alguma solução pra isso? (obs: saudade do jsf+richfaces)
<af:table value="#{wlHandler.listaGlobal}"
rowBandingInterval="1"
var="wl"
styleClass="AFStretchWidth"
inlineStyle="height:610px"
rowSelection="single"
fetchSize="30"
partialTriggers="::filtrarBt ::selectProcessos"
id="tabelaPrinc"
emptyText="Nenhuma task encontrada">
<af:column sortProperty="title" sortable="false" headerText="Referência">
<af:commandLink clientComponent="true" immediate="true" partialSubmit="true" id="linkTitle">
<af:clientListener method="redirecionar" type="action"/>
<af:outputText value="#{wl.title}" id="title" clientComponent="true"/>
</af:commandLink>
</af:column>
<af:column headerText="#{wl.systemMessageAttributes.protectedTextAttribute1}" sortable="false" visible="#{not empty wl.systemMessageAttributes.protectedTextAttribute1}">
<af:outputText value="#{wl.systemMessageAttributes.textAttribute1}" clientComponent="true" visible="#{not empty wl.systemMessageAttributes.protectedTextAttribute1}"/>
</af:column>
</table>