View | Details | Raw Unified | Return to bug 24579
Collapse All | Expand All

(-)a/branches/ucs-3.2/ucs-3.2-0/virtualization/univention-virtual-machine-manager-daemon/umc/js/uvmm.js (+2 lines)
 Lines 544-550   define([ Link Here 
544
				}));
544
				}));
545
			});
545
			});
546
546
547
			var path = this._tree.get('path');
547
			wizard = new DomainWizard({
548
			wizard = new DomainWizard({
549
				nodeURI: path[2] ? path[2].id : null,
548
				onFinished: _finished,
550
				onFinished: _finished,
549
				onCancel: _cleanup
551
				onCancel: _cleanup
550
			});
552
			});
(-)a/branches/ucs-3.2/ucs-3.2-0/virtualization/univention-virtual-machine-manager-daemon/umc/js/uvmm/DomainWizard.js (-1 / +6 lines)
 Lines 55-61   define([ Link Here 
55
		_driveGrid: null,
55
		_driveGrid: null,
56
		_driveContainer: null,
56
		_driveContainer: null,
57
57
58
		constructor: function() {
58
		nodeURI: null,
59
60
		constructor: function(args) {
61
			lang.mixin(this, args);
62
59
			// grid for the drives
63
			// grid for the drives
60
			this._driveStore = new Observable(new Memory({
64
			this._driveStore = new Observable(new Memory({
61
				idProperty: '$id$'
65
				idProperty: '$id$'
 Lines 87-92   define([ Link Here 
87
						name: 'nodeURI',
91
						name: 'nodeURI',
88
						type: 'ComboBox',
92
						type: 'ComboBox',
89
						label: _('Physical server'),
93
						label: _('Physical server'),
94
						value: this.nodeURI,
90
						dynamicValues: types.getNodes
95
						dynamicValues: types.getNodes
91
					}, {
96
					}, {
92
						name: 'profileDN',
97
						name: 'profileDN',

Return to bug 24579