I have about 75 rows of data that I would like to display on a web page using 
newpaper columns. I have tried the tableData and newsPaperColumn tags. The page 
will render the 2 requested columns. However, the data in the first column is 
replicated in the second column as a mirror of the data giving me 150 rows of 
data side by side.
I used the tableData example cut down to just the basics. The jsp look like the 
following:
    <t:dataTable id="dataNew2"
                newspaperColumns="2"
                styleClass="standardTable"
                headerClass="standardTable_Header"
                footerClass="standardTable_Header"
                rowClasses="standardTable_Row1,standardTable_Row2"
                
columnClasses="standardTable_Column,standardTable_ColumnCentered"
                var="country"
                value="#{countryList.countries}">
                    <h:column>
                            <h:outputText value="#{country.name}" />
                    </h:column>

                    <h:column>
                        <h:outputText value="#{country.isoCode}" />
                    </h:column>
                </t:dataTable>
I am hoping that someone has an answer for me as I would like to use MyFaces 
Tomahawk in several of the projects that I am currently working on.
Any help would be appreciated.
Regards
Wayne


       
---------------------------------
Make the switch to the world's best email. Get the new Yahoo!7 Mail now.

Reply via email to