I have a Jira Issue Collector setup and embedding it in to a Confluence (Cloud) page. Upon clicking on the button to trigger the Issue Collector form, the form is not rendering completely. I can only see Submit and close button. Other fields such as Summary and Description (which I have added in the form while creating the Issue Collector) fields are not visible.
Below is the code that I have embedded into Confluence page for this Issue Collector.
<input type="button" style="color:white" id="request-form" class="aui-button aui-button-primary" value="Submit Your Request">
<script type="text/javascript" src=......
........
//Requires that jQuery is available!
jQuery("#request-form").click(function(e) {
e.preventDefault();
showCollectorDialog();
});
}};</script>
This seems same as the issue reported in JRASERVER-70563 but no fix yet :-(
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.