Retrieve a radio button value

Christophe Leite August 20, 2013

Hello,

I've got a field named "Asked" with 2 possible answers (Yes or No) in my issue.

In my workflow, I would like to retrieve the field value.

How can I do that ? I've tried
cfValues['Asked'].getValue() == 'Yes' but that doesn't work... :-(

Thanks,

Christophe

2 answers

1 accepted

1 vote
Answer accepted
RambanamP
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.
August 20, 2013

the following code i have usedto get radio button value

CustomFieldManager cfm = ComponentManager.getCustomFieldManager()
CustomField asked = cfm.getCustomFieldObjectByName("Asked")
Option option=(Option)issue.getCustomFieldValue(asked);
if (option.getValue().equals("Yes")) {
// remaining code here
}

if you are doing it by Behaviour plugin then try with this code

FormField asked = getFieldByName ("Asked")
String value = asked.getValue()
if (value == "Yes") {
// remaining code here
}

check this document to get some sample codes

https://jamieechlin.atlassian.net/wiki/display/JBHV/Miscellaneous+Behaviours+Examples

Christophe Leite August 21, 2013

So, in my case, should it be cfValues['Asked'].option.getValue().equals("Yes") ?

RambanamP
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.
August 21, 2013

something like this

cfValues['Asked'].getValue().equals("Yes")

can you check what value it will return the following code

cfValues['Asked'].getValue()

RambanamP
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.
August 21, 2013

i have update my answer try with that code it should work!!

0 votes
Christophe Leite August 21, 2013

How can I display tis value in a message box ?

Suggest an answer

Log in or Sign up to answer