You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by je...@apache.org on 2013/07/15 20:33:27 UTC

git commit: updated refs/heads/master to 0392b57

Updated Branches:
  refs/heads/master 841e76190 -> 0392b571f


CLOUDSTACK-3461: zone wizard - add cluster step - when hypervisor is VMware, vCenter Username and vCenter Password are required (for firing addVmwareDc API).


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/0392b571
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/0392b571
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/0392b571

Branch: refs/heads/master
Commit: 0392b571f9e951696974ff7445355c7bd58b52d0
Parents: 841e761
Author: Jessica Wang <je...@apache.org>
Authored: Mon Jul 15 11:29:41 2013 -0700
Committer: Jessica Wang <je...@apache.org>
Committed: Mon Jul 15 11:33:18 2013 -0700

----------------------------------------------------------------------
 ui/scripts/zoneWizard.js | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/0392b571/ui/scripts/zoneWizard.js
----------------------------------------------------------------------
diff --git a/ui/scripts/zoneWizard.js b/ui/scripts/zoneWizard.js
index e2ad910..04687fe 100755
--- a/ui/scripts/zoneWizard.js
+++ b/ui/scripts/zoneWizard.js
@@ -883,18 +883,20 @@
  
           vCenterHost: {
             label: 'label.vcenter.host',
-            validation: { required: true }
+            validation: { required: true }  //required, for firing addVmwareDc API
           },
           vCenterUsername: {
-            label: 'label.vcenter.username'
+            label: 'label.vcenter.username',
+            validation: { required: true }  //required, for firing addVmwareDc API
           },
           vCenterPassword: {
             label: 'label.vcenter.password',
-            isPassword: true
+            isPassword: true,
+            validation: { required: true }  //required, for firing addVmwareDc API
           },
           vCenterDatacenter: {
             label: 'label.vcenter.datacenter',
-            validation: { required: true }
+            validation: { required: true }  //required, for firing addVmwareDc API
           },
 
          overridepublictraffic:{