I have been using the following Behaviors script to auto-populate the Description field with some canned text from the create screen:
def desc = getFieldById("description")
def defaultValue = """
Default Text Here
""".replaceAll(/ /, '')
if (!underlyingIssue?.description) {
desc.setFormValue(defaultValue)
}
I'm looking to setup the same behaviour for a custom multi-line text field I've named "Reference Links".
Can someone help with the syntax needed to accomplish this? Thanks!
You only need to change from this:
def desc = getFieldById("description")
to this:
def desc = getFieldByName("Reference Links")
The rest should be the same
Hi Raziman
I used same code in my jira for the same Description field
But it applied to globally for all project even i limited to one project and issue type.
Can you suggest how i can restrict to only the single project
Thanks
Vishal
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.