Skip to Main Content

Java Development Tools

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

af:inputListOfValues autoSuggestBehavior problem with response

celebonchoNov 30 2015 — edited Dec 6 2015

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?

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jan 3 2016
Added on Nov 30 2015
6 comments
1,630 views