From 6277ad4ad4fe5620602db27804ae33bac3fa285a Mon Sep 17 00:00:00 2001 From: Jessica Wang Date: Wed, 2 Feb 2011 11:11:07 -0800 Subject: [PATCH] bug 8243: VM Wizard - after zone dropdown is populated, call change event handler right away. --- ui/scripts/cloud.core.instance.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/scripts/cloud.core.instance.js b/ui/scripts/cloud.core.instance.js index cf2e7e227cb..ed2f18befdb 100644 --- a/ui/scripts/cloud.core.instance.js +++ b/ui/scripts/cloud.core.instance.js @@ -373,7 +373,8 @@ function initVMWizard() { $zone.data("zoneObj", zones[i]); $zoneSelect.append($zone); } - } + } + $zoneSelect.change(); listTemplatesInVmPopup(); } });