This will not work. Currently the sortProperty is treated as a string. It
cannot be used as EL expression.
On 5/14/07, Tomas Cerny <[EMAIL PROTECTED]> wrote:
Hello,
I have a question, when I am sorting rows in trinidad Table, lets say:
<tr:column sortable="true" defaultSortOrder="descending"
sortProperty="name" headerText="name">
<h:outputText value="#{staff.name}"/>
</tr:column>
it works well, but when I use that same thing on whatever delimited by "."
like:
<tr:column headerText="#{text['email']}" sortProperty="
personInfo.contactInfo.email" sortable="true">
#{person.personInfo.contactInfo.email}
</tr:column>
then it does not work?
Tomas