Hello,
I want to define a h2. Bigger heading in my script for value "Current Status:", "Proposed Solution:" "Acceptance Criteria:"
Can u plz guide me how to do it.
Here is my script which i m using
def formField = getFieldById(getFieldChanged())
def desc = getFieldById("description")
desc.setHelpText("For template description, click " + "<a href=\" https://confluence.energy.svc.dbgcloud.io/display/M7T/Issue+handling#Issuehandling-description_template\">link</a>")
def defaultValue = """\
Current Status:
Proposed Solution:
Acceptance Criteria:
""".stripIndent()
if (!desc.formValue) {
desc.setFormValue(defaultValue)
}
h2. Bigger heading
Hi @Sharad Bangera Welcome to Atlassian Community!
For making h2 heading, try to add h2.
https://jira.atlassian.com/secure/WikiRendererHelpAction.jspa?section=headings
def defaultValue = """\
h2.Current Status:
h2.Proposed Solution:
h2.Acceptance Criteria:
""".stripIndent()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Sharath Moolya@Sharad Bangera Kindly Accept the Solution, if it works for you.
It helps other user looking for same solution.
Thanks
Vikrant Yadav
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.