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.
When a user is on the edit screen and changes any field, I want to reset another field, called field2, and make them fill it in again. I want this to be done "live" while the user is still on the edit screen, before they hit the update button.
I've figured out a way to clear field2 if the user updates the issue (did this using a listener), but as I've said before, I want to clear the field BEFORE the update button at the bottom of the edit screen is clicked.
Can someone tell me if this is at all possible?
Hello @Shirley He
Yes, you can achieved it with Scriptrunner Behaviors.
Add-ons -> Behaviours
Add behavior, add mapping to your project and issue types.
Fields -> Add field2(field that will be trigger clearing)
add server-side script:
def field1 = getFieldByName("field to clear name")
def field2 = getFieldById(getFieldChanged())
field1.setFormValue(null)
Hello Markov,
I have used the code snippet to achieve one of my requirements similar to this. but Whenever I open edit screen to edit the value of the field its not showing the currently selected values
Example I have 2 fields Country and Region, and both are multiselect fields. Currently
field Region is having 3 values A,B,C. and when i open the edit screen it won't show these selected values it will just allow us to select new values after using the code snippet
Please provide me any solution if you have
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.