-
Notifications
You must be signed in to change notification settings - Fork 10
Getting LOVs
Methods that could be used to get the available values for the controls that expose the picklists:
-
getDynamicLOV(controlName)
- returns the available values for the dynamic picklist associated to the control, it doesn't return the currently selected value. The Nexus Bridge puts the warning in the console when the method is called for not correct control. Use the method when theuiType
control attribute is JComboBox andstaticPick
is false; also you can check the value returned by theisDynamic(control)
. -
getStaticLOV(controlName)
- returns the available values for the static picklist associated to the control. If this method doesn't return values when there are no records displayed, set the value of theHTML Type
control property toText
in the Tools. The Nexus Bridge puts the warning in the console when the method is called for not correct control. Use the method when thestaticPick
control attribute is true; also the value returned byisStatic(control)
is true. -
getLOV(controlName)
- the wrapper method that checks the type of the control and callsgetDynamicLOV
orgetStaticLOV
. In the case of misconfiguration, it assumes that the LOV is dynamic.