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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.