Trouble with ADF auto complete
We have a trouble with an ADF component of auto complete
When the user write the name, after digit some characteres the system shows correctly, but we just can get the value with enter key.
We want that it work also with click of mouse.
We are using this code, but the mouse click doesn't work, just with enter key:
<af:inputListOfValues label="Cliente" id="idClienteLov" autoSubmit="true" popupTitle="Busca de Clientes"
searchDesc="Escolha um cliente" model="#{pageFlowScope.lovBean.clienteLOVModel}"
columns="70"
returnPopupDataValue="#{pageFlowScope.cadastroPedidoBean.clienteSelecionado}"
converter="serviceDataConverter"
value="#{pageFlowScope.cadastroPedidoBean.clienteSelecionado}"
partialTriggers="cbLimpar dialogEmailNFE">
<af:autoSuggestBehavior maxSuggestedItems="7"
suggestedItems="#{pageFlowScope.lovBean.clienteLOVModel.autoCompleteList}"/>
0