Reputation: 337
In my application I am using JSF-Richfaces in web view pages. For searching by manual typing in select items I have to use rich:select tag.
<h:outputText value="Product" />
<rich:select defaultLabel="start typing for select"
value="#{accountSearchController.searchAccDto.accountProduct}" converter="#{productConverter}">
<f:selectItems value="#{accountSearchController.allProducts}" var="product" itemLabel="#{product.name}"/>
</rich:select>
The dropdown items looks like:
I want to change the background color of drop items as it is looks bleary as black in deep green. How do I can change the style of the drop-down items.
Upvotes: 0
Views: 297