I'm running Scriptrunner with Jira Service Desk to create a application portal for a system called "PBS".
In my portal, I want to make a read-only select field called "System", and set the default value to "PBS" so I could use this field later in a database-picker.
However, when I try to get the value of this read-only field with the following code:
issue.getCustomFieldValue(ComponentAccessor.customFieldManager.getCustomFieldObjects(issue).findByName("System"))
It always return null. If I comment out the line which makes the "System" field read-only, it works normally.
Could anyone please tell me if this is by design or a bug?
This is solved in ScriptRunner 6.10.0. I believe this is a bug related to https://productsupport.adaptavist.com/browse/SRJIRA-4611.
Do not know what you mean with "... make a read-only select field called "System" ..." and "... the line which makes the "System" field read-only ..." . can you add these lines ?
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 your reply. By "making the "System" field read-only" I mean:
getFieldByName("System").setHidden(true)
So the user can see the field and its default value, but cannot edit it.
Edit: Sorry, wrong code above. I meant:
getFieldByName("System").setReadOnly(true)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ok. It seems you are scripting a behavior ? Please give more context when you describe a "problem" !
Are you creating the issue ? Then the custom field does not contain the value yet, it is still only in the form field on the screen... In that case it is "logic" that your line returns null.
Please provide a bigger part of your script and context. with some parts of lines it it hard to understand what you are doing...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks again,
Yes, I'm scripting a behaviour for a field in the issue creation screen.
I don't know if what you described is true, because I'm able to get the value of the field with the exactly same code when the field is not read-only. The code only returns null when the field is read-only.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Aha!
Again, it really depends how you have written your code, so as long as you do not (want to) share more details, it is hard to guess.
In "normal" cases, when you create (or edit) an issue, the fields you modify are not yet saved to the issue, you find the values only n the form fields (thats why there is a method to get the value from the form field).
Only after saving it to the issue, you can count to find the values in the issue (getCustomFieldValue); But again, you can of course "fiddle" in your code and write yourself to the issue ...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Status of your issue ?
Resolved ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
I do not believe this is the case, because like I said, I can get values from non-custom fields before I submit the form. I should be able to get them from custom fields as well.
Perhaps what you described is how SR works in Jira, but not Jira Service Desk.
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.