Node creation: how to limit possible selection options by option selected in other field?

In custom node, I am having a drop down called “ACTION” which is having option(getschedule, enableschedule, disableschedul) based on the user selection value below corresponding dropdown should come (for example if user select getschedule in action below A,B,C drop down should come and if user select enablleschedule dropdown D,E should come and if user select disableschedule dropdown F,G should come ) how to achieve this, can you give some example?

Regards,
Praveen

Hello @praveen,
if I understand you correctly you can achieve this using multiple dropdowns, where corresponding dropdowns use different displayOptions to make them active only on specific actions selected. So something like this.

1 Like

Hi @marcus ,
In my custom node I am having only one drop down called ACTION Intially.
1)If I select getschedule value from dropdown , in the node I should see dropdown ACTION(getschedule value),A(dropdown),B(Dropdown).
2)If I select enableschedule value from dropdown , in the node I should see dropdown ACTION(enableschedule value),C(dropdown),D(Dropdown).
3)If I select disableschedule value from dropdown , in the node I should see dropdown ACTION(enableschedule value),E(dropdown),F(Dropdown).
Hope its clear now

Regards,
Praveen

got it @marcus Thank you!!

1 Like