How to do dynamic drop down menu in Tempo that depends to other dynamic drop down menu

Matti Kiviharju
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.
April 29, 2017

I got it now to work but now I need to know how to disable _Activity_ drop down menu if _Project_ drop down menu is not changed?

I have this code:

<script type="application/javascript" language="javascript">
jQuery(document).ready(function() {
  jQuery('.tempoDynamicDropDown[id$="_Project_"]').live('change', function() {
   var baseURL = 'http://subdomain.server.tld/'; 
    var elementId = jQuery(this).attr('id');
    var activityDropDownId = elementId.replace('_Project_', '_Activity_');
    var activityDropDown = jQuery('#' + activityDropDownId);
    var currentProjectKey = jQuery(this).val();
    var newExternalURL = baseURL + 'activities.php?project=' + currentProjectKey;
    jQuery(activityDropDown).attr('externalURL', newExternalURL);
    jQuery(activityDropDown).empty().populateDynamicDropdown(null);
  });
});
</script>

 

1 answer

0 votes
Ana Retamal
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
May 18, 2017

Hi Matti! For questions like this one, you'll be more likely to receive a good answer if you ask our developer community, you can find them at community.developer.atlassian.com.

Cheers,

Ana

Suggest an answer

Log in or Sign up to answer