Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Hide/Unhide Custom Field based on Select Field Option

ArkSigner Admin October 11, 2023

Hello Community!

I have a problem with ScriptRunner Behaviours Cloud. I want to hide/unhide a text field based on a select field's option. I took a help from a accepted question but my code doesn't work.

 

const fieldChangedValue = getFieldById("customfield_10055").getValue.name;
const testTextCF = getFieldById("customfield_10056")

if (fieldChangedValue == "Yes"){
   testTextCF.setVisible(true);
}else{
   testTextCF.setVisible(false);
}

2 answers

0 votes
Lucy Russon _Adaptavist_ October 12, 2023

Hi Ezgi, 

To hide/show a field based on a single select list field you can use a script like the below: 

 

const fieldChangedValue = getFieldById("customfield_10055").getValue().value
const  testTextCF = getFieldById("customfield_10056")

if(fieldChangedValue == "Yes"){
   field.setVisible(true)
} else {
   field.setVisible(false)
}

For multi select list field types, it's slightly different when checking the values. 

const fieldChangedValue = getFieldById("customfield_10055").getValue()
const  testTextCF = getFieldById("customfield_10056")
let values = fieldChangedValue.map(c => c.value) if(values.toString().includes("Yes")){ field.setVisible(true) }else{
field.setVisible(false)
}     

I hope these examples help! 

Lucy

0 votes
Vishal
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
October 11, 2023

Hi @ArkSigner Admin 

Have you tried testTextCF.setHidden(true) or testTextCF.setHidden(false) instead of using testTextCF.setVisible(true) ?

Check it out.

Samuel Srungarapati February 19, 2025

Isn't their default behaviour already?

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
FREE
PERMISSIONS LEVEL
Product Admin
TAGS
AUG Leaders

Atlassian Community Events