Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/html/lib/onyx/source/RadioGroup.js
blob: 50f0124f955a5a97a0cf6790f3b267f79ed72330 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/**
	A group of <a href="#onyx.RadioButton">onyx.RadioButton</a> objects
	laid out horizontally. Within the same radio group, tapping on one radio button
	will release any previously tapped radio button.
	
		{kind: "onyx.RadioGroup", components: [
			{content: "foo", active: true},
			{content: "bar"},
			{content: "baz"}
		]}
*/
enyo.kind({
	name: "onyx.RadioGroup",
	kind: "Group",
	highlander: true,
	defaultKind: "onyx.RadioButton"
});