I'm using custom fields->cascading select lists with Assets.
In the first list, I want to select more than one option.
In the second list, I then want to see options based on all selections made in the first one.
Can it be done?
Ie.:
So for the second select list I was thinking of using something like this:
Filter issue scope (AQL):
objecttype = "My Next Level Objects" AND "My Objects" IN (${customfield_10064.label})
But that just throws an error. Is there a way to format the output from the first select to "Object 1","Object 2","Object 3" ? Or any other solution?
I guess that's where the issue is. If I only select one option, ie. "Object 1", it works fine.
Try something like this...
objecttype = "My Next Level Objects" AND "My Objects" IN (${customfield_10064.label${0}})
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
try the following:
objecttype = "My Next Level Objects" AND (${customfield_10064.label}) IN "My Objects"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Ramin
I couldn't get that to work either. However, Kims answer solved my problem:
objecttype = "My Next Level Objects" AND "My Objects" IN (${customfield_10064.label${0}})
But thanks for responding! :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.