How do reset a text fields each time it appears on a screen?

Felipe Corredor Gomez May 20, 2015

How do reset a text fields each time it appears on a screen?

1 answer

0 votes
Bhushan Nagaraj
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.
May 20, 2015

Hi Felipe,

Try the Behaviors Plugin for JIRA (now part of Script Runner)

https://marketplace.atlassian.com/plugins/com.onresolve.jira.groovy.groovyrunner

Add a behavior to a particular custom field using the code below (haven't tested)

FormField field = getFieldById("customField_xxxxx")

field.setValue("")

 

Suggest an answer

Log in or Sign up to answer