Hello,
I would like to customize the Descrpition field in JIRA.
The steps are documented here
http://confluence.atlassian.com/display/JIRASTAGE/Setting+a+Default+Value+in+the+Description+Field
I am not sure how to do this (and if its even possible) with the hosted version of JIRA
Yep, this works, thank you!
In the Description Edit item of the Fields / Field Configurations I added the following:
<script type="text/javascript">
if (document.getElementById("description").value == "") {
document.getElementById("description").value = "Synopsis:\n\
[a high level description of the problem]\n\
\n\n\
Steps to reproduce:\n\
[include what you did including your test bed/network topology]\n\
\n\n\
Logs/Screen capture:\n\
[Include all relevant logs and screen capture if applicable]\n\
\n\n\
Buddy check:\n\
[Add name(s) of people who confirmed this is a bug]\n\
\n\n";
}
</script>
Follow form
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.
Be sure to vote to have the ability to set default values on fields:
https://jira.atlassian.com/browse/JRA-4812
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This became broken with the new UI... so I just created a new template with the various fields split out
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.