0 Replies Latest reply on May 20, 2008 4:22 PM by jgreene

    Standard component skinnning problem with Seam s:selectItems

    jgreene

      I'm using the following in my web.xml:

      <context-param>
       <param-name>org.richfaces.CONTROL_SKINNING</param-name>
       <param-value>enable</param-value>
      </context-param>
      <context-param>
       <param-name>org.richfaces.CONTROL_SKINNING_CLASSES</param-name>
       <param-value>enable</param-value>
      </context-param>
      


      Everything seems to work fine with buttons, input fields, etc. The skins are applied nicely. But there are a few places in my app where I use h:selectOneMenu comonents with Seam s:selectItems and s:convertEnum capability. The font style is applied to the labels in the select box, but the background shading is not. Here's an example of this markup:

      <h:selectOneMenu id="rankId" value="#{myuser.rank}">
       <s:selectItems value="#{userManager.userRanks}" var="rank" label="#{rank.rankText}" />
       <s:convertEnum/>
      </h:selectOneMenu>
      


      Is there a way to get the background color skinning applied to these Seam select box components? Thank you.