0 Replies Latest reply on Apr 25, 2007 3:09 PM by wheelermm

    Suggestion box dropdown menu closes in IE6 when attempting t

    wheelermm

      Is anyone else experiencing a problem in IE6 with RichFaces version 3.0.0 (appears to also be in version of the snapshot for 3.0.1 where the popup still comes up), where as soon as you click on the scrollbar, the menu closes? This does not happen in Firefox, and it does not happen in the demo, even when using IE6 which makes me think I am doing some thing wrong (although I don't know how that could be possible ;). Has anyone seen this, that knows what I might be doing to cause this? The code on my page is something like:

      <h:inputText id="chairs" label="Chair(s)" value="#{committeeDetailBean.committee.chairs}" converter="#{personListConverter}" size="38"/>
      
      <rich:suggestionbox for="chairs" tokens=";" suggestionAction="#{committeeDetailBean.personAutoCompleter.autocomplete}"
      var="person" fetchValue="#{person.autoCompleteName}" immediate="true" minChars="2" width="250" height="200" rows="20" first="0" shadowOpacity="1" shadowDepth="3" border="1" cellpadding="2" cellspacing="2">
      
      <h:column>
       <h:outputText value="#{person.lastNameCommaFirstName}"/>
       <h:outputText value="<#{person.userName}>"/>
      </h:column>
      </rich:suggestionbox>