Updated Branches: refs/heads/master a6f59e31d -> 569afefc6
CS-15945: cloudstack 3.0 UI - Infrastructure page - zone detail page - create guest network - make start IP, end IP field required. Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/569afefc Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/569afefc Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/569afefc Branch: refs/heads/master Commit: 569afefc6dc705f5d274174e53d39b06563087b1 Parents: a6f59e3 Author: Jessica Wang <[email protected]> Authored: Fri Aug 10 10:52:28 2012 -0700 Committer: Jessica Wang <[email protected]> Committed: Fri Aug 10 11:12:04 2012 -0700 ---------------------------------------------------------------------- ui/scripts/system.js | 10 ++++++++-- 1 files changed, 8 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/569afefc/ui/scripts/system.js ---------------------------------------------------------------------- diff --git a/ui/scripts/system.js b/ui/scripts/system.js index 46996ef..9d9936c 100644 --- a/ui/scripts/system.js +++ b/ui/scripts/system.js @@ -1323,8 +1323,14 @@ guestGateway: { label: 'label.guest.gateway' }, guestNetmask: { label: 'label.guest.netmask' }, - guestStartIp: { label: 'label.guest.start.ip' }, - guestEndIp: { label: 'label.guest.end.ip' }, + guestStartIp: { + label: 'label.guest.start.ip', + validation: { required: true } + }, + guestEndIp: { + label: 'label.guest.end.ip', + validation: { required: true } + }, networkdomain: { label: 'label.network.domain' } } },
