The Exalate team will be on holiday for the coming days - returning Jan 4
Enjoy & stay safe
1
0
-1
2 answers
- 10-1
Hi Tomás,
The first option you suggest gives this error on destination sided: Cannot get property 'value' on null object
And the second option with the nodeHelper gives this: NodeHelper.getOption is not supported in Exalate for Azure. Please remove its usages from your scripts.
So it seems that using the nodeHelper in ADO is not possible. Does anyone know of an alternative solution to this?
Best, Jónheiður
Add your comment... - 10-1
Hi Jonheiour,
I think the problem here is that `workItem."Custom.Type"` should be set with the option value as a String.
Can you try with this code:
workItem."Custom.Type" = replica.customFields."10228".value
Maybe an alternative to your approach can be like this:
def typeOption = nodeHelper.getOption(workItem, 10228L, replica.customFields."10228") workItem.customFields."Type".value = typeOption
Add your comment...
Hi all,
I am trying to sync a value from Radio button in Jira cloud to ADO
By running this script on Jira cloud outgoing
I get the following code in the local payload on Jira cloud side
so it seems that the data is there.
What I am now struggling with, is how to get the option value data "Issue in production" into a custom field on the Azure devOps side.
I have tried:
When I try this I get no error but no data
and with the one below I get an error
I have searched through the documentation but have not been able to find anything about radio button custom fields on the ADO side.
Any help would be highly appreciated