Hi All,
I hope by using custom trigger method (code added below) we can add or raise issue in jira through coding.
window.ATL_JQ_PAGE_PROPS = {
"triggerFunction": function(showCollectorDialog) {
//Requires that jQuery is available!
jQuery("#myCustomTrigger").click(function(e) {
e.preventDefault();
showCollectorDialog();
});
}};
The above code snippet will help us to raise ticket under particular issue collector id (7******3). So the ticket will be raised in "Project Settings -> Issue collector - > Name with Collector Id (7******3) - > Raised tickets through above code snippets.
But what i need is, i have to create new issue collector through coding. Kindly let me know whether it can be done?
It needs to be displayed in the Listing page of "Project Settings -> Issue Collector".