How to populate the summary field in an issue after selecting information in a cascading field?

Henrik Yekikan July 2, 2014

How to populate the summary field in an issue after selecting information in a cascading field?

1 answer

0 votes
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
July 3, 2014

You'll need to do some scripting to do that.

Henrik Yekikan July 3, 2014

I have a Java script in place in the description field and it is returning the custome field ID number and I need the "customevalue", I also need the child value.

Below is the script ===

<script type="text/javascript">
AJS.$('#customfield_10000').mouseup(function(){AJS.$('#summary').val(AJS.$('#customfield_10000').val() + '-' + AJS.$('#customfield_10000').val());})

AJS.$('#customfield_10000').keyup(function(){AJS.$('#summary').val(AJS.$('#customfield_10000').val() + AJS.$('#customfield_10000').val());})
</script>

Henrik Yekikan July 9, 2014

Please provide a script.

Suggest an answer

Log in or Sign up to answer