Hi,
I have a managed bean that contains a collection of UISelectItem instances.
How can i tell one instance to not render? Setting the selectitem.setRendered(false)
still renderes that item... I'd like to manipulate the UiSelectItem instance.
So basicly i have a h:selectOneMenu
that gets populated by this collection by f:selectItems
. But some of these items i don't want to be displayed.
Thank you
UPDATE: Looks like the rendered field is inherited by the UIComponentBase, but has no functionality. Now I'm trying to make a custom MenuRenderer in combination with an extended UISelectitem that has a disabled field.