not really known
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

18 lines
443 B

/**
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"
});