Hello,
I want our business users to click "Raise a request" so the issue collector window will appear on the page. Currently, the users need to click on the bottom right hand corner of the screen because I've selected the "Subtle" trigger style for my issue collector. This works fine, but it's not easy for users to see.
I have attempted to add the following to an HTML macro on my Confluence page. The button appears at the bottom of the page (because that's where the HTML macro is). When I click the button it just moves back to the top of the page instead of the issue collector opening.
---------------------------
ref="#" id="myCustomTrigger" class="aui-button aui-style aui-button-primary aui-nav-imagelink"><font color="white">Raise an Issue</font></a>
<script type="text/javascript">
window.ATL_JQ_PAGE_PROPS = {
"triggerFunction": function(showCollectorDialog) {
jQuery("#myCustomTrigger").click(function(e) {
e.preventDefault();
showCollectorDialog();
});
}
};
</script>
---------------------------
I have referenced the below question and answer and am still unable to get this to work. Thanks in advance for any help that can be offered!