You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi Team,
I have a requirement to create the cascading dropdown (single select list) in a transition screen of a JSM project.
Here is the structure of data, basically, it has three levels i.e., based on the selection of the previous one next dropdown values should be populated.
{
"First Level 1": [{
"Second Level 1-1": [{
"Third Level 1": "Third Level 1",
"Third Level 2": "Third Level 2",
"...": "..."
}],
"Second Level 1-2": [{
"Third Level 1": "Third Level 1",
"Third Level 2": "Third Level 2",
"...": "..."
}],
"...": "..."
}],
"First Level 2": [{
"Second Level 2-1": [{
"Third Level 1": "Third Level 1",
"Third Level 2": "Third Level 2",
"...": "..."
}],
"Second Level 2-2": [{
"Third Level 1": "Third Level 1",
"Third Level 2": "Third Level 2",
"...": "..."
}],
"...": "..."
}]
}
Note: I have tried the 'Select List (cascading)' plugin it didn't work as we expected also considering the 'Third Level' data is duplicated in our case, we end up duplicating options, screenshot FYR,
What is the best way to implement the same? Any inputs will be much helpful and much appreciated.
Thanks.