I would like to open JIRA.Forms.createCreateIssueForm(..) without dialog, inside the same page. Is it possible to open it inside some DIV element ?
I tried following, but it didn't worked -
var issueForm = JIRA.Forms.createCreateIssueForm({pid: projectId});
divElement.appendChild(issueForm["$element"][0]);
But it didn't worked. I don't want to use issueForm.asDialog(..).show().
How can I open issueForm inside the DIV element in the same page ?