The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi All,
I'm trying to show an info message on Create Issue Screen using Script Fragment by Scriptrunner. Can someone lead me an example on how to do it? I didn't see anything on the Scriptrunner forum, I already enable web profiling but I didn't see any Panel location on Create Issue Screen. Thanks!
Hey @Alvin
There is no panel location possible on the create issue screen.
Have you thought about possibly adding an Info message to a specific field? Say the summary? You can use HTML to make the text below different sizes and color.
OR
Are you looking for something like a behaviour to fill out the description with info field upon the creation of ticket? This behaviour below will set the description field to have whatever info/text you want to display there.
/*
* Code to be placed as an initializer function
*/
// Get a pointer to the description field
def desc = getFieldById("description")
// Get a pointer to the issue type field and get its value
def issueType = getFieldById("issuetype")
def issueTypeVal = issueType.getValue()
// If the issue type equals issuetype ID
if (issueTypeVal == ****) {
def defaultValue = """
h5.Example Text:
h5.Example Text:
h5.Example Text (opt.):
""".replaceAll(/ /, '')
if (!underlyingIssue?.description) {
desc.setFormValue(defaultValue)
}
// If any other issue type ID is returned set the description to a blank value
} else if (issueTypeVal != ****) {
desc.setFormValue(" ")
}
Hope this helps!
Let me know if you have any other questions.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Brittany Wispell ,
I need to have a button or link that will redirects the user to servicedesk when he/she clicks the link/button.
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.
Hi everyone, We’re always looking at how to improve Confluence and customer feedback plays an important role in making sure we're investing in the areas that will bring the most value to the most c...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.