6 Replies Latest reply on Oct 29, 2008 9:00 AM by ajanz

    background of suggestionbox not rendered in model panel

    ajanz

      i got a suggestionbox which works fine on a normal form.

      when i put it in a modalpanel the background of the suggestionlist is not rendered. so only the text is rendered, which looks a bit confusing.

      are the special requirements for using a suggestionbox in a modal panel?

      the code is quite simple.

       <h:inputText id="selmember" value="#{Session.membername}" styleClass="outputtext_read"
       style="width:280px">
       </h:inputText>
       <rich:suggestionbox width="270" height="#{Session.suggestListHeight}"
       usingSuggestObjects="true" id="selectlist" for="selmember"
       suggestionAction="#{Session.suggestMember}" var="s"
       fetchValue="#{s}" shadowOpacity="4"
       border="1" minChars="2"
       shadowDepth="4" cellpadding="2" >
       <h:column>
       <h:outputText value="#{s}" styleClass="outputtext_read" />
       </h:column>
      
       </rich:suggestionbox>