Set Log Work Mandatory based on a select list field

JIRA Administration November 27, 2020

Hi,

I m using the script runner and I want to make log work mandatory if select list is not empty. 

Any suggestions please.

1 answer

Suggest an answer

Log in or Sign up to answer
0 votes
Ram Kumar Aravindakshan _Adaptavist_
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
January 15, 2021

Hi,

For your requirement, you should look into ScriptRunner's Behaviours. 

To start, you should look at the Behaviours documentation at https://scriptrunner.adaptavist.com/latest/jira/tutorials/behaviours-tutorial.html] along with the Behaviours tutorial at https://scriptrunner.adaptavist.com/latest/jira/tutorials/behaviours-tutorial.html.

Below is an example Server-Side Behaviour code which shows how you can make the Log work field(s) mandatory:-


def required = getFieldById(fieldChanged)
def requiredValue = required.value.toString()

def logwork = getFieldById("log-work-time-logged")
logwork.required = false

if(requiredValue == "Yes") {
  logwork.required = true
}

Below is a print screen of the Behaviour configuration:-

behaviour_config.png

 

Below is a print screen of how the Behaviour works:-

behaviour_sample.pngWhen the issue is being created, if the option selected in the Required list is Yes, the Time Spent field becomes mandatory else it is not.

Hope this helps to solve your question :)

Kamila Więcław July 11, 2022

Hey, @Ram Kumar Aravindakshan _Adaptavist_! Do you know what is the name to interact with field "Work Description"? ("log-work-...?")

TAGS
AUG Leaders

Atlassian Community Events