Community Announcements have moved! To stay up to date, please join the new Community Announcements group today. Learn more
×Hi,
I need help on this point. I have a issue collector form for the users and i want to show some field when i click on a button radio.
I have already success this with the plugin "Behaviours" but it's work only in JIRA.
Example of Behaviours script :
def AC = getFieldByName("Application concernée")
def Autresapps = getFieldByName("Autres application")
def ACValue = AC.getValue()
if (ACValue=="AUTRES APPLICATIONS"){
Autresapps.setHidden(false)
Autresapps.setRequired(true)
}
else{
Autresapps.setHidden(true)
Autresapps.setRequired(false)
}
I want to apply this on the issue collector form.
Thank you for your help !
Up
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.