Hi
I would like to ask is there any possibility to mix access levels to Cloud Jira Software.
I need to mix users between standard and premium level. Some ppl from my team need advanced roadmaps (available for premium) and some of them don't need it.
I have over 100 users and only 10% need premium level for more advanced functionalities. How to resolve this problem?
Greetings, Emilia
So with the following code it works:
def numberselected = issue.getCustomFieldValue(ComponentManager.getInstance().getCustomFieldManager().getCustomFieldObjectByName("Checkbox Customfield")).size(); Thanks Nic for your help ![]()
Best regards,
Louisa
I'd go with
def numberselected = cfValues['Checkbox Customfield']?.getValue().size()
The getValue should be returning an array of all the currently selected options, so all you should need to do is count them, and you can do that with the size function.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you for fast response! Unfortunately, it still does not work. Do I have to define cfValues? Or do I have to import anything to be able to use cfValues?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ah, I was assuming you'd only given a snippet of script and had already dealt with fetching cfValues in a bit you hadn't posted. From scratch, you should be able to use this in a scripted field: def numberselected = getCustomFieldValue("Checkbox Customfield")?.getValue().size() If you're running this somewhere else, it may need to change.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'll use it in a scripted postfunction! I tried: def numberselected = issue.getCustomFieldValue(ComponentAccessor.getCustomFieldManager().getCustomFieldObjectByName("Checkbox Customfield"))?.getValue().size(); But it still does not work!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.