Page Menu
Home
Code
Search
Configure Global Search
Log In
Files
F392204
CheckBox.js
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Subscribers
None
CheckBox.js
View Options
/*
Copyright (c) 2004-2009, The Dojo Foundation All Rights Reserved.
Available via Academic Free License >= 2.1 OR the modified BSD license.
see: http://dojotoolkit.org/license for details
*/
if
(
!
dojo
.
_hasResource
[
"dijit.form.CheckBox"
]){
dojo
.
_hasResource
[
"dijit.form.CheckBox"
]
=
true
;
dojo
.
provide
(
"dijit.form.CheckBox"
);
dojo
.
require
(
"dijit.form.Button"
);
dojo
.
declare
(
"dijit.form.CheckBox"
,
dijit
.
form
.
ToggleButton
,{
templateString
:
dojo
.
cache
(
"dijit.form"
,
"templates/CheckBox.html"
,
"<div class=\"dijitReset dijitInline\" waiRole=\"presentation\"\n\t><input\n\t \t${nameAttrSetting} type=\"${type}\" ${checkedAttrSetting}\n\t\tclass=\"dijitReset dijitCheckBoxInput\"\n\t\tdojoAttachPoint=\"focusNode\"\n\t \tdojoAttachEvent=\"onmouseover:_onMouse,onmouseout:_onMouse,onclick:_onClick\"\n/></div>\n"
),
baseClass
:
"dijitCheckBox"
,
type
:
"checkbox"
,
value
:
"on"
,
readOnly
:
false
,
attributeMap
:
dojo
.
delegate
(
dijit
.
form
.
ToggleButton
.
prototype
.
attributeMap
,{
readOnly
:
"focusNode"
}),
_setReadOnlyAttr
:
function
(
_1
){
this
.
readOnly
=
_1
;
dojo
.
attr
(
this
.
focusNode
,
"readOnly"
,
_1
);
dijit
.
setWaiState
(
this
.
focusNode
,
"readonly"
,
_1
);
this
.
_setStateClass
();
},
_setValueAttr
:
function
(
_2
){
if
(
typeof
_2
==
"string"
){
this
.
value
=
_2
;
dojo
.
attr
(
this
.
focusNode
,
"value"
,
_2
);
_2
=
true
;
}
if
(
this
.
_created
){
this
.
attr
(
"checked"
,
_2
);
}
},
_getValueAttr
:
function
(){
return
(
this
.
checked
?
this
.
value
:
false
);
},
postMixInProperties
:
function
(){
if
(
this
.
value
==
""
){
this
.
value
=
"on"
;
}
this
.
checkedAttrSetting
=
this
.
checked
?
"checked"
:
""
;
this
.
inherited
(
arguments
);
},
_fillContent
:
function
(
_3
){
},
reset
:
function
(){
this
.
_hasBeenBlurred
=
false
;
this
.
attr
(
"checked"
,
this
.
params
.
checked
||
false
);
this
.
value
=
this
.
params
.
value
||
"on"
;
dojo
.
attr
(
this
.
focusNode
,
"value"
,
this
.
value
);
},
_onFocus
:
function
(){
if
(
this
.
id
){
dojo
.
query
(
"label[for='"
+
this
.
id
+
"']"
).
addClass
(
"dijitFocusedLabel"
);
}
},
_onBlur
:
function
(){
if
(
this
.
id
){
dojo
.
query
(
"label[for='"
+
this
.
id
+
"']"
).
removeClass
(
"dijitFocusedLabel"
);
}
},
_onClick
:
function
(
e
){
if
(
this
.
readOnly
){
return
false
;
}
return
this
.
inherited
(
arguments
);
}});
dojo
.
declare
(
"dijit.form.RadioButton"
,
dijit
.
form
.
CheckBox
,{
type
:
"radio"
,
baseClass
:
"dijitRadio"
,
_setCheckedAttr
:
function
(
_4
){
this
.
inherited
(
arguments
);
if
(
!
this
.
_created
){
return
;
}
if
(
_4
){
var
_5
=
this
;
dojo
.
query
(
"INPUT[type=radio]"
,
this
.
focusNode
.
form
||
dojo
.
doc
).
forEach
(
function
(
_6
){
if
(
_6
.
name
==
_5
.
name
&&
_6
!=
_5
.
focusNode
&&
_6
.
form
==
_5
.
focusNode
.
form
){
var
_7
=
dijit
.
getEnclosingWidget
(
_6
);
if
(
_7
&&
_7
.
checked
){
_7
.
attr
(
"checked"
,
false
);
}
}
});
}
},
_clicked
:
function
(
e
){
if
(
!
this
.
checked
){
this
.
attr
(
"checked"
,
true
);
}
}});
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Feb 22, 20:27 (2 d, 2 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
23988
Default Alt Text
CheckBox.js (2 KB)
Attached To
rZEDHG ZedLegacy
Event Timeline
Log In to Comment