#17384 closed defect (fixed)
pressing ToggleSplitter in IE scrolls page
Reported by: | haysmark | Owned by: | haysmark |
---|---|---|---|
Priority: | high | Milestone: | 1.9.2 |
Component: | DojoX Layout | Version: | 1.9.1 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
See the attached modified test case.
When you Tab to a ToggleSplitter? and press Space, it scrolls the page down in IE. This is because it is not catching the event:
_onKeyPress: function(evt){ if(this.state == "full"){ this.inherited(arguments); } if(evt.charCode == dojo.keys.SPACE || evt.keyCode == dojo.keys.ENTER){ this._toggle(evt); } },
The original test case does not show this bug because the body is set to height:100%, so scrolling was not tested.
Attachments (1)
Change History (4)
Changed 8 years ago by
Attachment: | test_ToggleSplitter.html added |
---|
comment:1 Changed 8 years ago by
Milestone: | tbd → 1.9.2 |
---|---|
Owner: | set to haysmark |
Priority: | undecided → high |
Status: | new → assigned |
comment:2 Changed 8 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Note: See
TracTickets for help on using
tickets.
Test case.