Hi, Are you talking about getting the sprint name from Java code?
Hi Rui yes,I just want to check the sprint field null or not i have used Behaviours plugin and tried following script FormField sprint = getFieldByName("Sprint") FormField productArea = getFieldByName("Product Area") String sprintValue = (String) sprint.getValue() if(sprintValue!= null){ productArea.setReadOnly(true) } but not able to get any result.
i just wanted to check this sprint field and if its not null then make one custom field read only.
On the current issue you need to iterate over all custom fields and check if there is the custom fiel of type: "com.pyxis.greenhopper.jira:gh-sprint".
If that customfield exists, you need to do something like this:
CustomField customField Issue issue.... ... Object cfValue = customField.getValue(issue); final List sprintList = (List) cfValue; // Get the first one if (sprintList != null && sprintList.size() > 0) { final Method ghSprintMethod = printList.get(0).getClass().getMethod("getName", null); final Object resultValue = ghSprintMethod.invoke(sprintList.get(0), null); if (resultValue instanceof String) { cfValue = (String) resultValue; } }
I hope this helps you.
Cheers,
RMRodrigues.
Hi Rui thanks for the answer. i need to make a custom field read only depending on this sprint value. any idea to how to achieve this?..
Your custom field was created by a plugin or from Administratin->Issues-> custom fields?
I have created it by administrator options not by a plugin.
It looks like you're new here. Sign in or register to get started.