Hi,
I'm having a custom field of text type converted to multi select using behviour. We have a requirement where we need to populate a text field based on the selected value from the drop down.
Kindly advise on how to achieve this.
Hi @Gowri_Sankar ,
you can achieve this through Behaviour, below script may help you.
you can't populate instead you can make it hidden and visible based on the selection
def field = getFieldByName("Select List")
def cf = getFieldByName("Field to be hidden")
cf.setHidden(true)
def val = field.getValue()
if(val == "something"){
cf.setHidden(false)
}
BR,
Leo
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.