Setting a Default Value in the Description Field

Usage FAQ

このページの内容

お困りですか?

アトラシアン コミュニティをご利用ください。

コミュニティに質問

The content on this page relates to platforms which are not supported by JIRA. Consequently, Atlassian can not guarantee providing any support for it. Please be aware that this material is provided for your information only and using it is done so at your own risk.

This page describes how to set a Default Value for the Description field in JIRA. There's a feature request for this at JRA-4812. Please watch and vote on the issue if this is important to you.

There are workarounds to add this functionality. The modification does not persist if you upgrade JIRA so you'll have to re-apply these steps again in the future. Here are directions to set a default value for your Description field in JIRA:

  1. Locate and backup the file: WEB-INF/classes/templates/jira/issue/field/description-edit.vm
  2. Open that file:

    #controlHeader ($action $field.id $i18n.getText($field.nameKey) $fieldLayoutItem.required $displayParameters.get('noHeader'))
    
    ## setup some additional parameters
    $!rendererParams.put("rows", "12")
    $!rendererParams.put("wrap", "virtual")
    
    ## let the renderer display the edit component
    $rendererDescriptor.getEditVM($!description, $!issue.key, $!fieldLayoutItem.rendererType, $!field.id, $!field.name, $rendererParams, false)
    
    #controlFooter ($action $fieldLayoutItem.getFieldDescription() $displayParameters.get('noHeader'))
    
  3. Add a section like this:

    #if($description == '')
    #set ($description = 'Put stuff here:')
    #end
    

    So, ultimately it should look something like:

    #controlHeader ($action $field.id $i18n.getText($field.nameKey) $fieldLayoutItem.required $displayParameters.get('noHeader'))
    
    ## setup some additional parameters
    $!rendererParams.put("rows", "12")
    $!rendererParams.put("wrap", "virtual")
    
    
    #if($description == '')
    #set ($description = 'Put stuff here:')
    #end
    
    ## let the renderer display the edit component
    $rendererDescriptor.getEditVM($!description, $!issue.key, $!fieldLayoutItem.rendererType, $!field.id, $!field.name, $rendererParams, false)
    
    #controlFooter ($action $fieldLayoutItem.getFieldDescription() $displayParameters.get('noHeader'))
    
  4. Jira インスタンスを再起動します。

Adding multi-line values

If you wish to display in the description a default value of:

Step 1

Step 2

Step 3

you'll need to tweak the above instructions a bit:

#set ($description = "Step 1\
\
Step 2\
\
Step 3")
#set ($description = $description.replace('\',' '))
最終更新日 2013 年 8 月 27 日

この内容はお役に立ちましたか?

はい
いいえ
この記事についてのフィードバックを送信する
Powered by Confluence and Scroll Viewport.