source: Dev/branches/rest-dojo-ui/client/dijit/form/RadioButton.js @ 274

Last change on this file since 274 was 256, checked in by hendrikvanantwerpen, 13 years ago

Reworked project structure based on REST interaction and Dojo library. As
soon as this is stable, the old jQueryUI branch can be removed (it's
kept for reference).

File size: 500 bytes
Line 
1define([
2        "dojo/_base/declare", // declare
3        "./CheckBox",
4        "./_RadioButtonMixin"
5], function(declare, CheckBox, _RadioButtonMixin){
6
7/*=====
8        var CheckBox = dijit.form.CheckBox;
9        var _RadioButtonMixin = dijit.form._RadioButtonMixin;
10=====*/
11
12        // module:
13        //              dijit/form/RadioButton
14        // summary:
15        //              Radio button widget
16
17        return declare("dijit.form.RadioButton", [CheckBox, _RadioButtonMixin], {
18                // summary:
19                //              Same as an HTML radio, but with fancy styling.
20
21                baseClass: "dijitRadio"
22        });
23});
Note: See TracBrowser for help on using the repository browser.