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

(-)a/ucs-4.0-0/services/univention-ad-connector/umc/js/adconnector/RadioButtons.js (-3 / +2 lines)
 Lines 33-39   define([ Link Here 
33
	"dojo/_base/declare",
33
	"dojo/_base/declare",
34
	"dojo/_base/lang",
34
	"dojo/_base/lang",
35
	"dojo/_base/array",
35
	"dojo/_base/array",
36
	"dijit/form/RadioButton",
36
	"umc/widgets/RadioButton",
37
	"umc/tools",
37
	"umc/tools",
38
	"umc/widgets/_FormWidgetMixin",
38
	"umc/widgets/_FormWidgetMixin",
39
	"umc/widgets/ContainerWidget",
39
	"umc/widgets/ContainerWidget",
 Lines 66-73   define([ Link Here 
66
			array.forEach(this.staticValues, function(ientry, i) {
66
			array.forEach(this.staticValues, function(ientry, i) {
67
				var radioButton = new RadioButton({
67
				var radioButton = new RadioButton({
68
					name: this.name,
68
					name: this.name,
69
					value: ientry.id,
69
					value: ientry.id
70
					labelPosition: 'right'
71
				});
70
				});
72
				this._radioButtons[i] = radioButton;
71
				this._radioButtons[i] = radioButton;
73
				var labelPane = new LabelPane({
72
				var labelPane = new LabelPane({

Return to bug 36321