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?
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
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ah, you are using the name of custom field. Have you tried it with id
<jira:AddCustomFieldValue id=
"customfield_10000"
value=
"Yes"
/>
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.