Issue Collector Custom Labels

Paul Robbins November 5, 2012

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>

1 answer

1 accepted

0 votes
Answer accepted
Dan Flint
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
November 5, 2012

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".

Suggest an answer

Log in or Sign up to answer