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

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 Leaders.
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 Leaders.
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"/>

Suggest an answer

Log in or Sign up to answer