Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a list box based on an expression , when I make selection on it, corresponding value of another field which is derived using the field in the list box is getting selected, meaning the possible value which is supposed to be in white is getting selected with the green color and showing up on current selections box
I am unable to find the reason behind this, I would not be able to share the application as it has real time data
The issue was because I was creating the list box field using an expression which involved another field once I happened to change it to a recursive expression things started working..
Thanks for all the replies
Check under Document Properties / Triggers.
It might be under "On Any Selection", on the specific field's selection trigger, or under a variable's OnChange trigger. Any of these could result in the behavior you describe.
May be this:
Some example:
You can create PosId list box with below config: New List Box / Field / < Expression >
In expression box, enter as:
=MIN(PosId)
Then when you select the ShopId, value in this box will always show the minimum possible.
OR
There is an Field Event Trigger.
The issue was because I was creating the list box field using an expression which involved another field once I happened to change it to a recursive expression things started working..
Thanks for all the replies