Updated Branches: refs/heads/master f15a6e4b6 -> 1fb9c8e78
CLOUDSTACK-2162: Scope parameter for adding primary storage for a basic zone set up Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/1fb9c8e7 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/1fb9c8e7 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/1fb9c8e7 Branch: refs/heads/master Commit: 1fb9c8e7886f54946d0e92af7a4050d165ef8e0f Parents: f15a6e4 Author: Pranav Saxena <psb...@gmail.com> Authored: Wed Jul 3 14:48:32 2013 +0530 Committer: Pranav Saxena <psb...@gmail.com> Committed: Wed Jul 3 14:48:32 2013 +0530 ---------------------------------------------------------------------- ui/scripts/ui-custom/installWizard.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/1fb9c8e7/ui/scripts/ui-custom/installWizard.js ---------------------------------------------------------------------- diff --git a/ui/scripts/ui-custom/installWizard.js b/ui/scripts/ui-custom/installWizard.js index 9f1f4c7..c53a642 100644 --- a/ui/scripts/ui-custom/installWizard.js +++ b/ui/scripts/ui-custom/installWizard.js @@ -609,6 +609,25 @@ } }, + scope:{ + label:'label.scope', + select:function(args){ + var scopeData=[]; + //intelligence to handle different hypervisors to be added here + /* if( selectedHypervisor == 'XenServer'){ + scopeData.push({ id: 'cluster', description: _l('label.cluster') }); + }*/ + // else if (selectedHypervisor == 'KVM'){ + scopeData.push({ id: 'cluster', description: _l('label.cluster') }); + scopeData.push({ id: 'zone', description: _l('label.zone.wide') }); + + args.response.success({ + + data: scopeData + }); + } + }, + server: { label: 'label.server', validation: { required: true }