Well, for whateve reason, that made each item in my list rendered twice, and still horizontally,.

cat1cat1 cat2cat2 cat3cat3

<t:dataList var="category" value="#{CategoryAdminBean.categories}">
                    <t:column>
                        <t:commandLink action="">                            <t:outputText value="#{category.categoryName}"/>
                        </t:commandLink>
                    </t:column>
                </t:dataList>

On 6/19/06, Julian Ray <[EMAIL PROTECTED] > wrote:
try adding <h:column> around the commandLink tag.


From: Gregg Bolinger [mailto:[EMAIL PROTECTED]]
Sent: Monday, June 19, 2006 10:42 AM
To: MyFaces Discussion
Subject: dataList displaying horizontal

I created a dataList

<t:dataList var="category" value="#{CategoryAdminBean.categories}" layout="simple">
   <t:commandLink action="" >
      <t:outputText value="#{ category.categoryName}"/>
   </t:commandLink>
</t:dataList>

I thought the "simple" layout was supposed to be

Cat1
Cat2
Cat3
...

But it is appearing as:

Cat1 Cat2 Cat3

Should this be happening?

Thanks.

Reply via email to