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.
In my case, I need that one insight field to autofill when another insight field has an option. How I can do it? I've already tried scripts from this page https://confluence.atlassian.com/servicemanagementserver0420/post-functions-1095772164.html
it doesn't work
and tried IQL expressions - it also doesn't work.
Can someone help me?)
I think that you can use the behavior script.
def fieldChanged = getFieldChanged()
def checkedField = getFieldById("checked_field_id")
if (fieldChange.getFieldId()== "checked_field_id"){
def fieldNeedToFillValue = getFieldById("field_need_to_fill_id")
//Perform your business logic here, example
fieldNeedToFillValue.setFormValue(fieldChange.getValue())
}
Hope it can help you
Thank you so much
i'll try to do it also)
also, I've founded another script to resolve this case)
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.