Hi
I'm struggling with a component that I have defined:
<component jsfid="navnpanel" extends="clay" id="navnpanel">
<element jsfid="t:htmlTag" renderId="1">
<attributes>
<set name="value" value="fieldset" />
</attributes>
<element jsfid="t:htmlTag" renderId="2">
<attributes>
<set name="value" value="legend" />
</attributes>
<element jsfid="outputText" renderId="2">
<attributes>
<set name="value"
value="#{messages['navnpanel.text']}">
</set>
</attributes>
</element>
</element>
<element jsfid="outputLabel" renderId="2">
<attributes>
<set name="value"
value="#{messages['navnpanel.text']}"></set>
</attributes>
</element>
</element>
</component>
It is supposed to render a fieldset with a legend, and a label inside it.
However the label never appears and there are no errors what so ever.
Hermod