how to disabled a selectOnlistBox?

Hi, You could you the

Hi,

You could you the disabled attribute to disable the component.

e.g.

                <bjsf:selectOneListbox disabled="true" >
                        <f:selectItem itemValue="Red" />
                        <f:selectItem itemValue="Blue" />
                        <f:selectItem itemValue="Yellow" />
                        <f:selectItem itemValue="Green" />
                        <f:selectItem itemValue="Orange" />
                </bjsf:selectOneListbox>

thanks, I can disable the component!

thanks, I can disable the component!