[richfaces-issues] [JBoss JIRA] Created: (RF-8494) Describe limitations of table variables usage with sorting/filtering
Nick Belaevski (JIRA)
jira-events at lists.jboss.org
Fri Mar 5 11:05:18 EST 2010
Describe limitations of table variables usage with sorting/filtering
----------------------------------------------------------------------
Key: RF-8494
URL: https://jira.jboss.org/jira/browse/RF-8494
Project: RichFaces
Issue Type: Task
Security Level: Public (Everyone can see)
Components: doc
Affects Versions: 3.3.3.Final
Reporter: Nick Belaevski
Assignee: Sean Rogers
The following limitation applies to built-in filtering/sorting for rich:dataTable component: expressions can refer only to the variable declared as "var" attribute. Another variables, e.g. "rowKeyVar" are not supported.
Examples.
Supported case:
<rich:dataTable var="item">
<rich:column sortBy="#{item}">
...
</rich:column>
</rich:dataTable>
Not supported case:
<rich:dataTable rowKeyVar="rkv">
<rich:column sortBy="#{rkv}">
...
</rich:column>
</rich:dataTable>
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the richfaces-issues
mailing list