Add issue collector
Trigger
A 'custom trigger style' allows you to define a Javascript function to customize trigger behavior. The code snippet below must be included with the issue collector snippet on your web page.
You can customize the body of the 'triggerFunction'. This function always has to attach the passed in 'showCollectorDialog' to an element's event. You will most likely want to replace the id 'myCustomTrigger' with the id of the element you want to launch the issue collector.
<script type="text/javascript">
window.ATL_JQ_PAGE_PROPS = {
"triggerFunction": function(showCollectorDialog) {
jQuery("#myCustomTrigger").click(function(e) {
e.preventDefault();
showCollectorDialog();
});
}
};
</script>
Issue collector form
Template preview
Custom templates
- Drag fields to re-order them in the form
- Click on the dialog heading to edit the template title
- Click on field labels to edit them
- collector.plugin.admin.custom.help.line4
Issue collectors will not record all the data submitted in the form, since the description and environment fields for the issue type are not present.
Field presence can be set up on Fields page.