Combo Component

Description

The combo Component is equivalent to the standard HTML tag <SELECT SIZE=1>.

The combo Component has the following capabilities :

  • Position & Size
  • Foreground & Background Color
  • Text & font
  • Help
  • Visibility, Read-Only, Disabled
  • Events Handling

Screen Shot

Syntax

<v:combo 
         id="preferemail" 
         value="#{editCard.card.preferemail}" 
         rendered="#{editCard.readOnly==false}">
	<f:selectItem itemLabel="#{messages.editCard_item_unknown}" itemValue="unknown"/>
	<f:selectItem itemLabel="#{messages.editCard_item_plainText}" itemValue="text"/>
	<f:selectItem itemLabel="#{messages.editCard_item_html}" itemValue="html"/>
</v:combo>
      

Instructions