phpldapadmin/application/media/js/dojo-release-1.7.2/dojox/mobile/CheckBox.js
2013-03-19 15:55:33 +11:00

14 lines
484 B
JavaScript

//>>built
define("dojox/mobile/CheckBox",["dojo/_base/declare","dojo/dom-construct","dijit/form/_CheckBoxMixin","./ToggleButton"],function(_1,_2,_3,_4){
return _1("dojox.mobile.CheckBox",[_4,_3],{baseClass:"mblCheckBox",_setTypeAttr:function(){
},buildRendering:function(){
if(!this.srcNodeRef){
this.srcNodeRef=_2.create("input",{type:this.type});
}
this.inherited(arguments);
this.focusNode=this.domNode;
},_getValueAttr:function(){
return (this.checked?this.value:false);
}});
});