aboutsummaryrefslogtreecommitdiffstats
path: root/sdnr/wt/devicemanager/provider/src/main/resources/elasticsearch/plugins/head/src/app/ui/splitButton/splitButtonDemo.js
blob: 76b6fa2dcd3921100c2435b9fe66eb7e22e75dff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
$( function() {

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

	window.builder = function() {
		return new ui.SplitButton({
			label: "Default",
			items: [
				{ label: "Action" },
				{ label: "Another Action" },
				{ label: "Selected", selected: true }
			]
		});
	};

});