hi,
in a “af:table”, this works fine :
<af:column sortProperty=”title” sortable=”true”>
<f:facet name=”header”>
<af:outputText value=”Titre” />
</f:facet>
<af:outputText value=”#{thisRowDoc.title}” />
</af:column>
but this doesn’t :
<af:column sortProperty=”facility.libelle” sortable=”true”>
<f:facet name=”header”>
<af:outputText value=”Service” />
</f:facet>
<af:outputText value=”#{thisRowDoc.facility.libelle}” />
</af:column>
how can i sort on a property of a property ?
thx !