Hi,
I'm trying to make an issue collector that creates a bug with a Custom label field filled in. I have a custom field called "Partner" that we use to associate issues with a specific project. I would like to have the issue collector fill this field in but I haven't had any luck so far. For reference here is the JS I'm using:
<script type="text/javascript">window.ATL_JQ_PAGE_PROPS = {
"triggerFunction": function(showCollectorDialog) {
//Requries that jQuery is available!
jQuery("#feedback-button").click(function(e) {
e.preventDefault();
showCollectorDialog();
});
},
"fieldValues": {
summary : "Test123456",
Partner : "Company X"
}};</script>
I believe you need to reference the custom field ID rather than the name. To find the custom field ID navigate to the custom field menu in admin mode. click the cog to the right and hover over configure, the ID should be shown at the bottom of the screen in the link url. To refrence the custom field I think it should be #customfield_xxxxx : "Test123456".
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.