aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/devicemanager/provider/src/main/resources/elasticsearch/plugins/head/src/app/ui/checkField/checkFieldDemo.js
blob: 9a3b3caee39e31d11811f0a0baf62dfca0c16b3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
$( function() {

	var ui = window.app.ns("ui");
	var ux = window.app.ns("ux");
	var ut = window.app.ns("ut");

	window.builder = function() {
		var form = new ux.FieldCollection({
			fields: [
				new ui.CheckField({
					label: "default",
					name: "check_default"
				}),
				new ui.CheckField({
					label: "checked",
					name: "check_true",
					value: true
				}),
				new ui.CheckField({
					label: "unchecked",
					name: "check_false",
					value: false
				}),
				new ui.CheckField({
					label: "required",
					name: "check_required",
					require: true
				})
			]
		});

		return (
			{ tag: "DIV", children: form.fields.map( function( field ) {
				return { tag: "LABEL", cls: "uiPanelForm-field", children: [
					{ tag: "DIV", cls: "uiPanelForm-label", children: [ field.label, ut.require_template(field) ] },
					field
				]};
			}).concat( new ui.Button({
				label: "Evaluate Form",
				onclick: function() { console.log( "valid=" + form.validate(), form.getData() ); }
			})) }
		);
	};

});