Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Consider, i have a listbox with values like Fruits, Vegetables, Juice
and other listbox with values like 'Apple', 'Mango', 'Carrot', 'Cucumber', 'strawberry juice'
when i select Fruits from a 1st listbox, then it should select either Apple or Mango.
Do i need to apply trigger?
we can use field triggers, but how can we use value based triggers?
can somebody help me?
Hi everyone,
I got help from my colleague and solved this problem.
Create trigger for 1st listbox in document settings-> Triggers->1st listbox field.
Add and "Select in field" action, in field, specify 2nd listbox field name, and in search field
write an expression
=if(1st listbox field = 'Fruits','Apple')
This will set Apple as a selection in the 2nd listbox, when we click on 1st listbox.
Is those two fields are different TAbles?
Hi sreenivas,
those are two separate inline fields created in edit script.
Hi Udaya,
Can you attach the script.
Regards,
Jagan.
Hi everyone,
I got help from my colleague and solved this problem.
Create trigger for 1st listbox in document settings-> Triggers->1st listbox field.
Add and "Select in field" action, in field, specify 2nd listbox field name, and in search field
write an expression
=if(1st listbox field = 'Fruits','Apple')
This will set Apple as a selection in the 2nd listbox, when we click on 1st listbox.