If I use the below code i am able to get the Issue Key, but i need to fetch the summary of the issue in js.
issueKey = JIRA.Issue.getIssueKey();// For Getting Issue Key
Try this, it will work
function getSummary() { var key = this.JIRA.Issue.getIssueKey(); var summary; AJS.$.ajax({ url: "/rest/api/2/issue/" + key, type: 'get', dataType: 'json', async: false, success: function(data) { summary = data.fields.summary; } }); return summary; }; getSummary();
I am sure there is an easier way, but this surely works
Happy weekend!
I have already used this api to get the summary, but i thought there is some easy way to get it. Anyway's thanks for your reply.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Not tried getSummary() yet?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Tried and not working, it not present in JIRA.Issue
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.