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!

Two issues with inputComboboxListOfValues component

Zeroxin-OracleAug 3 2012 — edited Aug 8 2012
Hi,
Env: JDev 11.1.1.4 and ADF.

Now in my page, it has one inputComboboxListOfValues field and other input fields which will be disabled/enabled according to inputComboboxListOfValues value( in valueChangeListener() to trigger).
I met two issues:
1) when I enter into an valid value in inputComboboxListOfValues field and then tabs out, it doesn't popup query window but refresh its value to the first item of this LOV
2) after tabs out, it can't fire valueChangeEvent, so this will cause I can't disable/enable other fields.
3) if I enter into partial value in inputComboboxListOfValues field and then tabs out, it will popup query window, but if I close query window, it also can't fire valueChangeEvent.

The following is jspx code snippet:

<af:inputComboboxListOfValues id="FromPlanName"
popupTitle="Search and Select: #{bindings.CopyFromPlanName.hints.label}"
value="#{bindings.CopyFromPlanName.inputValue}"
label="#{bundle.PLAN_NAME}"
model="#{bindings.CopyFromPlanName.listOfValuesModel}"
required="true" showRequired="true" autoSubmit="true"
columns="#{bindings.CopyFromPlanName.hints.displayWidth}"
shortDesc="#{bindings.CopyFromPlanName.hints.tooltip}"
binding="#{backingBeanScope.CopyPlanBean.fromPlanName}"
partialTriggers="FromPlanType"
valueChangeListener="#{backingBeanScope.CopyPlanBean.planNameChanged}"
returnPopupListener="#{backingBeanScope.CopyPlanBean.processSrcPlanReturnPopup}">
<f:validator binding="#{bindings.CopyFromPlanName.validator}"/>
</af:inputComboboxListOfValues>

Would you please give me some guide?

thanks,
zeroxin
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Sep 5 2012
Added on Aug 3 2012
6 comments
571 views