CLOUDSTACK-537: cloudstack UI - Advanced SG-enabled zone - VM Wizard - API has been chagned. Here is related UI change: not pass networkID to deployVirtualMachine API.
Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/a22bfd7e Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/a22bfd7e Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/a22bfd7e Branch: refs/heads/api_limit Commit: a22bfd7e7b412793e4a7cbb73f96b7ddfb6db887 Parents: eeb3f17 Author: Jessica Wang <[email protected]> Authored: Wed Jan 16 15:10:24 2013 -0800 Committer: Jessica Wang <[email protected]> Committed: Wed Jan 16 15:10:24 2013 -0800 ---------------------------------------------------------------------- ui/scripts/instanceWizard.js | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/a22bfd7e/ui/scripts/instanceWizard.js ---------------------------------------------------------------------- diff --git a/ui/scripts/instanceWizard.js b/ui/scripts/instanceWizard.js index 89ca1d6..e4b1f31 100644 --- a/ui/scripts/instanceWizard.js +++ b/ui/scripts/instanceWizard.js @@ -545,7 +545,8 @@ if(checkedSecurityGroupIdArray.length > 0) array1.push("&securitygroupids=" + checkedSecurityGroupIdArray.join(",")); - + + /* if(selectedZoneObj.networktype == "Advanced" && selectedZoneObj.securitygroupsenabled == true) { // Advanced SG-enabled zone var networkData = { zoneId: selectedZoneObj.id, @@ -577,6 +578,8 @@ return; } } + */ + } else if (step5ContainerType == 'nothing-to-select') { if(args.context.networks != null) { //from VPC tier
