Does anyone have a template with columns and rows in different colors in the Description of (Enabler) Story?
Are you using the Cloud or Data Center version ?
Not sure to understand, do you have a mock of what you are expecting ?
Regards
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.
For formatting you can refer to https://jira.atlassian.com/secure/WikiRendererHelpAction.jspa?section=all
Does it answer your question ?
Regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you for your suggestion Florian, it's useful in general. But it's not solution for my issue. I want to create a URL under the Hyperlink Button, this is not solution, since I have already tried it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What do you mean by
I want to create a URL under the Hyperlink Button,
Regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It means that once I click on the hyperlink button the template for creating (Enabler) Story will be pop-up in browser in editing mode.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I've achieve similar thing if I understand well but it require Scriptrunner for JIRA.
In my case I use a Behaviours to read information from the URL in order to pre-fill the form for the user. So when the user click on the link, he is redirected to a new tab, with the project, issue type and description pre-filled.
URL is like
import java.net.URLDecoder
import com.atlassian.jira.component.ComponentAccessor
def url = request.getHeader("referer")
def url_params = url.substring(url.indexOf("?") + 1)
def string_params = url_params.tokenize('&')*.tokenize('=').collectEntries()
string_params.each{ k,v ->
if(getFieldById(k.toString()) != ''){
getFieldById(k.toString())?.setFormValue(getValueForField(k.toString(),v.toString()))
}
}
def getValueForField(String fieldName, String fieldValue){
String decodedURLValue = URLDecoder.decode(fieldValue)
return decodedURLValue
}
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.