How to remove default value “ALL” from the and

If you see the below given value in the SelectItem it does not show the value for “ALL” but still the option “ALL” will be shown
in the mutiple selection.

<af:selectManyChoice label=”SelectManyChoiceExp”
binding=”#{backingBeanScope.backing_sample.smc1}”
id=”smc1″>
<af:selectItem label=”One” value=”One”
binding=”#{backingBeanScope.backing_sample.si1}”
id=”si1″/>
<af:selectItem label=”Two” value=”Two”
binding=”#{backingBeanScope.backing_sample.si2}”
id=”si2″/>
</af:selectManyChoice>

<af:selectManyListbox label=”SelectManyListBoxExp”
binding=”#{backingBeanScope.backing_sample.sml1}”
id=”sml1″>
<af:selectItem label=”One” value=”One”
binding=”#{backingBeanScope.backing_sample.si3}”
id=”si3″/>
<af:selectItem label=”Two” value=”Two”
binding=”#{backingBeanScope.backing_sample.si4}”
id=”si4″/>
<af:selectItem label=”Three” value=”Three”
binding=”#{backingBeanScope.backing_sample.si5}”
id=”si5″/>
</af:selectManyListbox>

To remove this, select the component af:selectManyListbox or af:selectManyChoice and open the Apperance Tab in the Property Inspector
Search for the property field: SelectAllVisible and set it to FALSE.