You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
Hi,
I m using the script runner and I want to make log work mandatory if select list is not empty.
Any suggestions please.
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:-
Below is a print screen of how the Behaviour works:-
When 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 :)
Hey there Cloud Community members! We’re excited to give you the first glimpse of the new home for business teams on Jira — Jira Work Management. Jira Work Management is the next generation of J...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.