Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 21:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×Hi there!
The goal I'd like to achive, is to only show released and not yet archived versions in the Affects Version/s Field in JIRA Service Desk Customer Portal.
I tried this in vain using the new (and still awesome) Behaviours Service Desk support.
import com.atlassian.jira.component.ComponentAccessor
//getting version Manager
def versionsManager = ComponentAccessor.getVersionManager()
//getting the Affects Version/s Field
def versionsField = getFieldById("versions")
//getting all non-archived released versions
def releasedVersions = versionsManager.getVersionsReleased(issueContext.projectObject.id, false)
//setting them as FieldOptions for the Affects Version/s Field
versionsField.setFieldOptions(releasedVersions)
When printing out all versions of this project and the ones in releasedVersions, I get the following result:
REL = only released and non archived versions
ALL = all versions
I tried this with and without the BaseScript import at the start of the script, but ...
import groovy.transform.BaseScript
@BaseScript FieldBehaviours fieldBehaviours
... I still got all the versions shown in the customer portal without any error. (What it the BaseScript line doing anyways?)
Does anyone know if this is a general problem at the moment or am I doing something completely wrong?
Thanks in advance!
We recently launched a new app that allows to prompt users for the affected version on customer portal.
The form would show a project field with cascading version and/or component
You may try it on our demo environment
http://jira.innovura.io/servicedesk/customer/portal/1/create/1
Feel free to contact us if you want any enhancements/modifications
Here's the link for the app:
Additional Console Log Information:
Behaviours is getting the right value, but then exits with an error
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey @slothstronaut and @Yves Martin ,
There is a known issue for setting values to select lists using service desk behaviours.
Please follow SRJIRA-2687 for updates (I can tell you that there is a Pull Request already so hopefully the fix will be included in the next release)
Regards,
Thanos
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Off toppic..
Hello Thanos,
could you please check out this post? I would really appreciate it if you answered this question ;) Thanks!
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.
Hi, slothstronaut! I have a similar problem with the script. When creating a new task in JIRA, script works ok, but if we create a new task in Service Desk portal, script doesn't work. Through the browser console I have such an error:
Behaviours post failed. TypeError: Cannot read property 'map' of undefined
at Object.a [as f] (batch.js?locale=en-US&sd_operational=true:1044)
at Function.e.setFieldOptions (batch.js?locale=en-US&sd_operational=true:1044)
at t.e.addFieldListeners (batch.js?locale=en-US&sd_operational=true:1044)
at batch.js?locale=en-US&sd_operational=true:1044
at <anonymous>
You get the same error?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
no, "unfortunately" im not getting any error response in the logs. Maybe I am misinterpreting the docs.
edit:
i can see my script getting triggered, but it seems like the .setFieldOptions doesnt have any effect.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
maybe we misunderstand each other, I've enabled logging for behaviour and also include logger to my script for debug. I can see my script is called during my browser
https://screenstore.tk/2018-02-2017-51-18bgv2m.png
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello
You faced similar bugs to what I reported about "select list conversion": https://productsupport.adaptavist.com/browse/SRJIRA-2667
It looks like jQuery "$" alias is not defined - and replacing "$." and "$(" in plugin js/bh-portal.js (by "jQuery." and "jQuery(") may be a work-around worth to try... waiting for Adaptavist to fix this Behaviour support.
I propose you to vote for my bug report, and I can vote for yours if you create one for your specific trouble.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
maybe only an Adaptavist could clarify the situation here =)
If its generally possible to modify the customer portal of a service desk project via behaviours, or just the service desk project itself (inside normal jira without the effects on the customer portal).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Right. But the way "Behaviours with Service Desk" is documented: https://scriptrunner.adaptavist.com/latest/jira/behaviours-servicedesk.html
it sounds like any documented "behaviour use case" is expected to work in both JIRA and Customer Portal.
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.