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>
Check out tlddoc of richfaces : The header is added using a facet with the attribute, name=
I did it but now I can only see Product Name, Product Section is still invisible.
You can have only one such facet per panel. Put Product Section into sibling or nested panel.