#10597 closed (fixed)
Admin Actions "Select all" checkbox doesn't work in IE6/7
Reported by: | Owned by: | nobody | |
---|---|---|---|
Component: | contrib.admin | Version: | dev |
Severity: | Keywords: | javascript, admin, admin actions, IE | |
Cc: | Triage Stage: | Accepted | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
The select all checkbox doesn't work in Internet Explorer 6 or 7.
This is because the event handler being attached is the 'change' event ('onchange' in MSIE), which apparently doesn't work for checkboxes. There was also an issue with passing {{ this.checked }} in the anonymous event handler.
This patch fixed the 'onchange' issue by instead using the 'click' event, which seems to offer the same functionality as the 'click' event (including keyboard manipulation).
Attachments (1)
Change History (4)
by , 16 years ago
Attachment: | 10597.diff added |
---|
comment:1 by , 16 years ago
milestone: | → 1.1 |
---|---|
Triage Stage: | Unreviewed → Accepted |
comment:2 by , 16 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
Patch for #10597 - Fixed Admin Actions checkbox in IE6/7