JDeveloper 11g r2.
Hi. I created inputListOfValues, and add autoSuggestBehaviour to it.
<af:inputListOfValues id="fio_LOVId"
popupTitle="Search and Select: #{bindings.Fio_LOV.hints.label}"
value="#{bindings.Fio_LOV.inputValue}"
label="#{bindings.Fio_LOV.hints.label}"
model="#{bindings.Fio_LOV.listOfValuesModel}"
required="#{bindings.Fio_LOV.hints.mandatory}"
columns="#{bindings.Fio_LOV.hints.displayWidth}"
shortDesc="#{bindings.Fio_LOV.hints.tooltip}">
<f:validator binding="#{bindings.Fio_LOV.validator}"/>
<af:autoSuggestBehavior suggestedItems="#{bindings.Fio_LOV.suggestedItems}"/>
</af:inputListOfValues>
This inputListOfValues is added to the form to create the table rows.
When I try to create a new record, I try to enter values in the inputListOfValues field, there is a one second load data animation, and then the cursor moves to the starting position and there is no pop-up window with the results.
I traced that the first attempt to enter data, returns 2 <partial-response>:
First: <partial-response><changes><update id="pt1:fio_LOVId">....</changes></partial-response>
Second: <partial-response><noop/></partial-response>
With further enter values, it returns only one partial-response:
<partial-response><changes><update id="pt1:soc4">...</changes></partial-response>
I think the reason of problem in the second response in first try. But why it happening?
How to solve this problem?