I've read some articles about writing composite components in JSF 2 and even about defining nested composite components, but I haven't found the example to defining a composite component that can accept an undefined number of sub-components.
I would like to be able to create a composite components that can be used in a similar manner to this:
<special:fieldGroup>
<special:field name="x" value="..."/>
<special:field name="y" value="..."/>
...
</special:fieldGroup>
Is there an example or explanation on how to achieve this using the new JSF 2 syntax?
Thanks!
UIComponent) or composite components (read: XHTML files utilizingxmlns:composite)? – BalusC Jun 14 '11 at 15:03UIComponentclass (as your original question title and body implies), it would almost automagically be taken into account, but when you're developing a composite component, it is indeed not automatically taken into account. – BalusC Jun 14 '11 at 15:15