Changes between Initial Version and Version 5 of Ticket #13341
- Timestamp:
- Apr 5, 2012, 10:19:11 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #13341
-
Property
Status
changed from
new
toclosed
-
Property
Severity
changed from
critical
tominor
-
Property
Component
changed from
Dijit - Form
toDijit
-
Property
Priority
changed from
high
tolow
-
Property
Resolution
changed from
to
wontfix
-
Property
Status
changed from
-
Ticket #13341 – Description
initial v5 1 1 Open dijit/tests/form/test_CheckBox.html, add following code into dojo.addOnLoad: 2 3 {{{#!js 2 4 dojo.connect(dijit.byId("cb1"), "_onMouseDown", function(){console.log("mouseDown");}); 3 5 dojo.connect(dijit.byId("cb1"), "_onFocus", function(){console.log("focus");}); 6 }}} 4 7 5 8 Click on the checkbox, it prints "focus" thand "mouseDown" in the console.