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

  1. /**
  2. A group of <a href="#onyx.RadioButton">onyx.RadioButton</a> objects
  3. laid out horizontally. Within the same radio group, tapping on one radio button
  4. will release any previously tapped radio button.
  5. {kind: "onyx.RadioGroup", components: [
  6. {content: "foo", active: true},
  7. {content: "bar"},
  8. {content: "baz"}
  9. ]}
  10. */
  11. enyo.kind({
  12. name: "onyx.RadioGroup",
  13. kind: "Group",
  14. highlander: true,
  15. defaultKind: "onyx.RadioButton"
  16. });