Hi,
I am trying to implement a autocomplete suggestion box using rich:suggestionbox tag. The suggestion box appears correctly, however I am unable to use arrow keys to select from the dropdown list. The only option I have is to use the mouse keys. The code looks like this:
<h:panelGroup>
<h:inputText type="text" id="primaryManager" value="#{addNewUserBackingBean.newProfile.primaryManagerName}"
class="txtLong">
</h:inputText>
<rich:suggestionbox id="properySuggestBox" for="primaryManager" minChars="1" nothingLabel="No Managers found"
shadowOpacity="2" shadowDepth="4" cellpadding="2" styleClass="suggestionpopup"
suggestionAction="#{addNewUserBackingBean.getPrimaryManagerNames}" var="result" fetchValue="#{result}">
<h:column>
<h:outputText value="${result}" />
</h:column>
</rich:suggestionbox>
</h:panelGroup>
use 3.1.4 GA version. This was fixed.