You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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, @Ram Kumar Aravindakshan _Adaptavist_! Do you know what is the name to interact with field "Work Description"? ("log-work-...?")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.