blob: c02f7682ec928cfab51e7a30a6ad5a7e80f69676 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//>>built
define("dojox/mobile/RadioButton", [
"dojo/_base/declare",
"dijit/form/_RadioButtonMixin",
"./CheckBox"
], function(declare, RadioButtonMixin, CheckBox){
/*=====
CheckBox = dojox.mobile.CheckBox;
RadioButtonMixin = dijit.form._RadioButtonMixin;
=====*/
return declare("dojox.mobile.RadioButton", [CheckBox, RadioButtonMixin], {
// summary:
// A non-templated radiobutton widget that can be in two states (checked or not).
// Override automatic assigning type --> node, it causes exception on IE8.
// Instead, type must be specified as this.type when the node is created, as part of the original DOM
_setTypeAttr: null,
baseClass: "mblRadioButton"
});
});
|