+ All Categories
Home > Documents > Tge how-to-add-jira-checklist-for-issues

Tge how-to-add-jira-checklist-for-issues

Date post: 22-Apr-2015
Category:
Upload: francis-martens
View: 3,053 times
Download: 0 times
Share this document with a friend
Description:
 
26
How-to Guide Checklist for JIRA Issues with the Table Grid Editor
Transcript
Page 1: Tge how-to-add-jira-checklist-for-issues

How-to GuideChecklist for JIRA Issues

with the Table Grid Editor

Page 2: Tge how-to-add-jira-checklist-for-issues

The ResultAdd Compliance and Quality Checklists for Customer Reps/Developers to JIRA Issues

Page 3: Tge how-to-add-jira-checklist-for-issues

Features explainedAdd Compliance and Quality Checklists for Customer Reps/Developers to JIRA Issues

Page 4: Tge how-to-add-jira-checklist-for-issues

FOLLOW THESE STEPS TO ADD THE TABLE GRID TO YOUR JIRA ISSUES

Page 5: Tge how-to-add-jira-checklist-for-issues

In JIRA AdministratorAdd a custom field

Page 6: Tge how-to-add-jira-checklist-for-issues

Select Table Grid Editor and click next

Page 7: Tge how-to-add-jira-checklist-for-issues

Give a name and description to the Table Grid Editor. For example, if you are going to use the Table Grid Editor to store offers made to the customer, you can call it Quotes.

Checklist

Page 8: Tge how-to-add-jira-checklist-for-issues

Select the screen(s) on which you want to include the Quotes.

Page 9: Tge how-to-add-jira-checklist-for-issues

Create an issue which uses the relevant screen and you will find your Table Grid

Page 10: Tge how-to-add-jira-checklist-for-issues

Now we will configure the Checklist Table Grid

Page 11: Tge how-to-add-jira-checklist-for-issues

Within JIRA Administratora) Goto Custom Fieldsb) b) Hit configure

Page 12: Tge how-to-add-jira-checklist-for-issues

Click Edit Default Value

Page 13: Tge how-to-add-jira-checklist-for-issues

Let’s configure The Table Grid Editor for Quotes

Page 14: Tge how-to-add-jira-checklist-for-issues

Download the configuration fileused in this example

Continue this presentation for the explanation of the configuration file

Download

Page 15: Tge how-to-add-jira-checklist-for-issues

gd.tablename = checklistgd.visiblerows = 5gd.ds = jira

Name of the table in database

Where the table content is stored (datasource)

1. Basic Table Grid configuration and where to store its contents

How many rows are visible in one page

Page 16: Tge how-to-add-jira-checklist-for-issues

gd.columns = questions, answer, comments

Column Identifiers

2. Define the column specifications

Page 17: Tge how-to-add-jira-checklist-for-issues

gd.columns = questions, answer, comments

3. Let’s define the first column : Questions

col.questions = Questionscol.questions.type = stringcol.questions.size = 14col.questions.readonly = Truecol.questions.width = 250

Column header nameColumn Type

The field is read only

Width of column expressed in pixels

Page 18: Tge how-to-add-jira-checklist-for-issues

gd.columns = questions, answer, comments

4. Let’s define the ‘Check’ column as a convenient checkbox (when you click on the cell)

col.answer = Checkcol.answer.width = 60col.answer.type = checkbox

Column header name

Column Type

Page 19: Tge how-to-add-jira-checklist-for-issues

gd.columns = questions, answer, comments

5. Let’s define the Comments column

col.comments = Commentscol.comments.type = textareacol.comments.rows = 14col.comments.width = 400col.comments.editable = true

Column Typethe number of lines of the textarea when editing it

Page 20: Tge how-to-add-jira-checklist-for-issues

6. How to preload the checklist table grid with a static list of pre-defined questions

# initialize each row with predefined valuesgd.query.row1= Requirements signed and approved by customer?, null,gd.query.row2= Features vs. Requirements tested?, null,gd.query.row3= Customer has seen test version?, null,gd.query.row4= Software has gone through test batch?, null,gd.query.row5= Customer signed off on final version?, null,

Page 21: Tge how-to-add-jira-checklist-for-issues

How to find issues in based on data stored in the table gridExample: find projects where Quality/Compliance Guidelines

were not followed?

Pull out filters

Page 22: Tge how-to-add-jira-checklist-for-issues

Click advanced

How to find issues in based on data stored in the table gridExample: find projects where Quality/Compliance Guidelines

were not followed?

Page 23: Tge how-to-add-jira-checklist-for-issues

How to find issues in based on data stored in the table gridExample: find projects where Quality/Compliance Guidelines were

not followed?

Here you can enter a JQL Query that includesTable Grid properties

Page 24: Tge how-to-add-jira-checklist-for-issues

issuekey in grid("Checklist", "answer = false AND comments <> ''")

name of the custom field Table Grid

SQL where clauseaccess your grid in JQL

How to find issues in based on data stored in the table gridExample: find projects where Quality/Compliance Guidelines were

not followed?

Page 25: Tge how-to-add-jira-checklist-for-issues

Save the Filter so you have it at a Click of a Button

Save the Filter


Recommended