2 Replies Latest reply on Apr 20, 2007 7:30 AM by ilya_shaikovsky

    SuggestionBox is not correctly positioned on Firefox 2.0.0.3

    cocomole

      Hello everybody,

      I'm trying to use the suggestionbox from richfaces (3.0.1-SNAPSHOT) and if I put my the input box and the suggestionbox inside a table and change the alignment or the width of the table the suggestionbox gets misaligned from the input box when I view it using Firefox 2.0.0.3 (on Internet Explorer it works fine).
      Does anyone have any advice?

      <f:view>
       <h:form>
       <table width="98%" align="center" border="1" cellspacing="0" cellpadding="2">
       <TR class="trContentFields" height="30">
       <td nowrap><b><t:outputLabel for="mnemonico" value="Mnemônico"/> :</b></td>
       <td nowrap>
      
       <t:inputText id="mnemonico" value="">
       <f:validateLength minimum="2" maximum="20"/>
       </t:inputText>
      
       <rich:suggestionbox id="suggestionMnemonico" for="mnemonico" tokens=","
       suggestionAction="#{pracaSuggester.suggestMnemonico}" var="result"
       minChars="1" width="150" height="150" >
       <h:column>
       <h:outputText value="#{result}" />
       </h:column>
       </rich:suggestionbox>
      
       <t:message for="mnemonico" styleClass="errorMsg" />
      
       </td>
       </TR>
       </table>
       </h:form>
      </f:view>
      


      PS: This problem might be related with this http://jira.jboss.com/jira/browse/RF-8 ?

      Thanks in advance,
      Carlos