Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I want to display field values in list box/multi box based on button selection. Can anyone help me out for this approach.
Regards,
Prajna
May be something like attached sample?
Hi prajna,
You can change field values based on button click using trigger and expression in listbox. PFA the sample application and let me know if you have any questions.
Thanks,
Sibin Jacob.C
Hi Sibin and tresesco,
Em using personal edition so I wasn't able to open those files. Tried using variables and expressions got my solution
Thank you
Regards,
Prajna
create a trigger for a button to set a variable to 1 or 0 . In the expression for list box, use an if statement to display different values. something like
=if (variable=1, Field1, Field2)
And add the following to your button as text expression:
=if (variable=1, 'Switch to Field2', 'Switch to Field1')
Peter