Hi,
I made a behaviour that put inside description (create issue) a default text.
I would like the text will be bold and underlined.
How can I do it?
This is my code in Behaviour:
def desc = getFieldById("description")
def defaultValue = """h3. General OS / DB / Browser / Machine Information:
h3. Scenario Description and steps to recreate the problem:
**
h3. Actual & Expected Results
**
**
h3. Log file information:
h3. Additional info (Optional):
""".replaceAll(/ /, '')
if (! underlyingIssue?.description) {
desc.setFormValue(defaultValue)
}
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It should work, there are no other markup options for that.
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.
It really didnt work
but you can create empty line by placing space in unicode
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.