I use seam-gen to generate a table view corresponding to a database table. Column sorting
works fine using f:param name="order"
(f:param name="order" value="#{projectsList.order=='name asc' ?
'name desc' : 'name asc'}"/>. )
However, this table includes only the columns that correspond to the database table. I
can add transient getter methods to the entity bean and display the results on the table.
However, then sorting does not work because a column for the transient getter does not
exist.
Is there any way to sort a table by the columns corresponding to transient getter
methods?
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4031848#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...