1 2 Previous Next 15 Replies Latest reply on Apr 4, 2007 11:04 AM by james_hays Go to original post
      • 15. Re: SuggestionBox inside ui:repeat not generating popup
        james_hays

        I've updated to the latest snapshot on April 3, 2007 and all seems to be working fine.

        Thanks.

        My code now looks like this.

        <h:panelGroup styleClass="addProductContainer">
         <div class="addProduct"/>
         <h:inputText id="NewProductField" value="#{search.waNumber}" size="14"/>
         <rich:suggestionbox for="NewProductField"
         suggestionAction="#{viewProfileRecord.autoCompleteAvailableProducts}"
         var="p"
         width="200" height="200">
         <a4j:ajaxListener type="org.ajax4jsf.ajax.ForceRender"/>
         <h:column>
         <h:outputText value="#{p[0]}" title="#{p[1]}"/>
         </h:column>
         </rich:suggestionbox>
         </h:panelGroup>
        




        1 2 Previous Next