It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
Hi Friends,
I am writing a plugin which will extend the capabilities for create issue, I am able to execute action only when if my URL is http://localhost:2990/jira/secure/CreateIssue.jspa but not able to execute action in quick create issue screen, Can anyone suggest.
I have the same discussion
https://answers.atlassian.com/questions/137921/how-to-extend-issue-actions-in-jira-5
if anyone know please share.
Thanks in advance
Best Regards
Onkar Ahire
you go through
https://answers.atlassian.com/questions/83433/validator-support-for-edit-quick-edit-and-soap
in that he mentioned for Quick Edit Action. you use Quick Create Action instead of that.
but it is a bit lengthy procedure.
<webwork1 key="jtricks-create-issue-details" name="JTricks Create Issue Details" > <actions> <action name="com.ora.ExtendJiraIssueAction.ExtendCreateIssue" alias="CreateIssueDetails"> <view name="error">/secure/views/createissue-details.jsp</view> <view name="input">/secure/views/createissue-details.jsp</view> </action> <action name="com.ora.ExtendJiraIssueAction.ExtendCreateIssue" alias="CreateIssueDetails"> <view name="error">/secure/views/createissue-details.jsp</view> <view name="input">/secure/views/createissue-details.jsp</view> </action> </actions> </webwork1>
------------------------------------------------------------------------------
package com.ora.ExtendJiraIssueAction; import com.atlassian.jira.bc.issue.IssueService; import com.atlassian.jira.issue.IssueFactory; import com.atlassian.jira.web.action.issue.IssueCreationHelperBean; public class ExtendCreateIssue extends com.atlassian.jira.web.action.issue.CreateIssueDetails { public ExtendCreateIssue(IssueFactory issueFactory,IssueCreationHelperBean issueCreationHelperBean,IssueService issueService) { super(issueFactory, issueCreationHelperBean, issueService); } protected String doExecute() throws Exception { log.debug("do stuff in execute Method");
return super.doExecute(); } protected void doValidation() { super.doValidation(); log.debug("do stuff in validate Method");
} }
This community is celebrating its one-year anniversary and Atlassian co-founder Mike Cannon-Brookes has all the feels.
Read moreHey Atlassian Community! Today we are launching a bunch of customer stories about the amazing work teams, like Dropbox and Twilio, are doing with Jira. You can check out the stories here. The thi...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.