Two issues with inputComboboxListOfValues component
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