How can I dynamically display the dropdown based on the value selected in the previous dropdown?
This isn’t working. Could someone please help identify the cause of this issue?
How can I dynamically display the dropdown based on the value selected in the previous dropdown?
This isn’t working. Could someone please help identify the cause of this issue?
Hi everyone, I’m still looking for guidance on dynamically displaying the second dropdown based on the value selected in the first dropdown. If anyone has implemented a similar functionality or can suggest an approach to handle this, I would greatly appreciate your help!
Please let me know if additional details or context would be helpful. Thank you in advance!
Hi @Kroolo
Here is the documentation for conditional nested parameters: Select | Make Developer Hub
Cheers,
Henk
I referred to this documentation, but it’s not working as expected.
Hi @Kroolo,
You don’t need to specify a visible
parameter. You need to nest the Select Project
parameter inside the Cards on Specific Project
option.
I’ve recreated your module, try copying this:
[
{
"name": "watchedObjects",
"type": "select",
"label": "Watched Object",
"options": [
{
"label": "All Tasks",
"value": "all_tasks"
},
{
"label": "Cards on Specific Project",
"value": "specific_project",
"nested": [
{
"name": "project",
"type": "select",
"label": "Select Project",
"options": "rpc://getprojects"
}
]
}
]
}
]
Regards, Terry.