CS-15945: cloudstack 3.0 UI - Infrastructure page - zone detail page - create guest network - make start IP, end IP field required.

This commit is contained in:
Jessica Wang 2012-08-10 10:52:28 -07:00
parent a6f59e31d5
commit 569afefc6d
1 changed files with 8 additions and 2 deletions

View File

@ -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' }
}
},