Accessing QuickEdit from own Webwork

Sven August 27, 2013
Hi, How can I access the QuickEdit Javascript for Issue Editing from my own webwork? This Button http://www.imagebanana.com/view/zxjwyzx0/image.jpg opens this dialog http://www.imagebanana.com/view/lz06szlj/image.jpg How can I achieve that on my own webwork?

1 answer

1 vote
pelizza
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 30, 2016

I have been using the html link approach (href="secure/QuickEditIssue!default.jspa?issueId=...") for a while, but now it doesn't work very well after JIRA 7.1.

After digging a lot, I've learned how to use the QuickEditPlugin.

For "create issue dialog":

JIRA.Forms
  .createCreateIssueForm({pid: projectId})
  .asDialog({windowTitle: 'Create Issue'})
  .show();
 
// OR
 
var createCreateIssueForm = require('quick-edit/form/factory/create-issue');
createCreateIssueForm({pid: projectId})
  .asDialog({windowTitle: 'Create Issue'})
  .show();

For "create subtask" dialog:

JIRA.Forms
  .createSubtaskForm({parentIssueId: parentIssueId})
  .asDialog({windowTitle: 'Create Subtask'})
  .show();

// OR

var createSubtaskForm = require('quick-edit/form/factory/create-subtask');
createSubtaskForm({parentIssueId: parentIssueId})
  .asDialog({windowTitle: 'Create Issue'})
  .show();

I hope it helps!

Suggest an answer

Log in or Sign up to answer