I didn't understand what's the link of "autoCompleteBean.list"
with the matchesList on the Autocomplete Showcase example...
I noticed that I have this below. But still missing the link between the two lists(matchesList and autoCompleteBean.list)... How does It work?
Code:
public List getList() {
return matchesList;
}
I'm having some trouble trying to make it work on Seam... I didn't get any Exceptions but doesn't appear nothing(just appear a blackline, when the autocomplete should appear) on the selectInputText...
Code:
<ice:selectInputText rows="6" width="300" listVar="city"
valueChangeListener="#{autoCompleteBean.updateList}"
listValue="#{autoCompleteBean.list}">
<f:facet name="selectInputText">
<ice:panelGrid columns="3" style="margin-bottom:-20px;"
columnClasses="cityCol,stateCol,zipCol">
<ice:outputText value="#{city.city}" />
<ice:outputText value="#{city.state}" />
<ice:outputText value="#{city.zip}" />
</ice:panelGrid>
</f:facet>
</ice:selectInputText>