The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

jira jelly: How can one access a custom radio buttons field?

Neeraj Kumar
November 13, 2013

I need to set values for a radio buttons field. The values are

1. None

2. Yes

3. No

4. Undefined

Jelly does not give any error message or update the values.

<jira:AddCustomFieldValue name="Rep" value="50518"/>

When I open the page source of the page, I can see the values of the options. e.g. 50518 is a value for one specific option. But Jelly does not update the value.

Am i missing something?

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Udo Brand
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
November 13, 2013

Hi Neeraj,

use for example

<jira:AddCustomFieldValue name="Rep" value="Yes"/>

I'm not sure if "None" is a real option in your case or if it represents null. If null simply don't fill this field for that issue.

Cheers,

Udo

Neeraj Kumar
November 13, 2013

Hi Udo,

I have tried both the name and the number as values. Jelly just ignores the value.

You are right, None represents null.

Best,

Neeraj

Udo Brand
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
November 13, 2013

Ah, you are using the name of custom field. Have you tried it with id

<jira:AddCustomFieldValue id="customfield_10000" value="Yes"/>