aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/devicemanager/provider/src/main/resources/elasticsearch/plugins/head/src/app/ui/textField/textFieldDemo.js
blob: 25790d489f5819c43d79efa1c940a7b450c7eec3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
$( function() {

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

	window.builder = function() { return (
		{ tag: "DIV", children: [
			new ui.TextField({}),
			new ui.TextField({ placeholder: "placeholder" }),
			new ui.TextField({ onchange: function( tf ) { console.log( tf.val() ); } })
		] }
	); };

});