Help

Controls

PermLinkWikiLink

Built with Seam

You can find the full source code for this website in the Seam package in the directory /examples/wiki. It is licensed under the LGPL.

Forum: Seam Users Forum ListTopic List
18. Aug 2008, 16:32 CET | Link

I am not able to see "Product Name" and "Product Section" areas which are located between <facet> tags. Can you have any idea what is the reason of this?

                       <rich:panel id="tempItem">
                                                 <f:facet name="label">Product Name</f:facet>
                        <s:decorate>
                        <h:outputText value="#{receiptHome.temp.product.productCard.name}" />
                        </s:decorate>
                                                 <f:facet name="label">Product Section</f:facet>
                        <s:decorate>
                        <h:outputText value="#{receiptHome.temp.product.productCard.section.name}" />
                        </s:decorate>
                                                                                         <div style="clear: both" />
                                                 </rich:panel>

3 Replies:
18. Aug 2008, 16:44 CET | Link

Check out tlddoc of richfaces : The header is added using a facet with the attribute, name=header

18. Aug 2008, 16:50 CET | Link

I did it but now I can only see Product Name, Product Section is still invisible.

18. Aug 2008, 17:05 CET | Link

You can have only one such facet per panel. Put Product Section into sibling or nested panel.