jira - Auto-Populate Field in Issue Creation Screen -



jira - Auto-Populate Field in Issue Creation Screen -

i have 2 custom fields in issue creation screen, 'field a' , 'field b'. need way populate 'field b' automatically after user inputs value in 'field a'.

i know can achieved javascript, since knowledge in area limited, there tutorial or tips can help out?

i need develop separate plugin or can add together javascript html in customfield config?

i hope behaviours plugin may help find solution

try next script.

formfield myfielda = getfieldbyname("a") formfield myfieldb= getfieldbyname("b") string myfieldavalue = (string) myfielda.getvalue() if (myfielda.getformvalue() != null) { myfieldb.sethidden(false) }else { myfieldb.sethidden(true) }

jira jira-plugin atlassian

Comments

Popular posts from this blog

javascript - I need to update the text of a paragraph by inline edit -

javascript - THREE.js reposition vertices for RingGeometry -

assembly - What is the addressing mode for ld, add, and rjmp instructions? -