RadioButton.js 526 B

1234567891011121314151617181920212223
  1. define("dijit/form/RadioButton", [
  2. "dojo/_base/declare", // declare
  3. "./CheckBox",
  4. "./_RadioButtonMixin"
  5. ], function(declare, CheckBox, _RadioButtonMixin){
  6. /*=====
  7. var CheckBox = dijit.form.CheckBox;
  8. var _RadioButtonMixin = dijit.form._RadioButtonMixin;
  9. =====*/
  10. // module:
  11. // dijit/form/RadioButton
  12. // summary:
  13. // Radio button widget
  14. return declare("dijit.form.RadioButton", [CheckBox, _RadioButtonMixin], {
  15. // summary:
  16. // Same as an HTML radio, but with fancy styling.
  17. baseClass: "dijitRadio"
  18. });
  19. });