[richfaces-issues] [JBoss JIRA] Created: (RF-2293) scrollableDataTable doesn't render h:column children (only renders rich:column)

David Green (JIRA) jira-events at lists.jboss.org
Mon Feb 18 17:07:26 EST 2008


scrollableDataTable doesn't render h:column children (only renders rich:column)
-------------------------------------------------------------------------------

                 Key: RF-2293
                 URL: http://jira.jboss.com/jira/browse/RF-2293
             Project: RichFaces
          Issue Type: Bug
    Affects Versions: 3.1.4
            Reporter: David Green


scrollableDataTable doesn't render columns that are created using h:column, only rich:column.  This makes it impossible to use scrollableDataTable in a facelet include where the caller doesn't know what the table implementation will be.

It appears as if ColumnWalker is used to iterate columns in the rendering phase, however ColumnWalker only tests if children are a column with the following test:

if (kid instanceof Column){

Perhaps ColumnWalker should test as follows:

if (kid instanceof Column || kid instanceof UIColumn) {



-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the richfaces-issues mailing list