Opened 15 years ago

Closed 15 years ago

Last modified 13 years ago

#10597 closed (fixed)

Admin Actions "Select all" checkbox doesn't work in IE6/7

Reported by: kyle.fox@… 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)

10597.diff (640 bytes ) - added by kyle.fox@… 15 years ago.
Patch for #10597 - Fixed Admin Actions checkbox in IE6/7

Download all attachments as: .zip

Change History (4)

by kyle.fox@…, 15 years ago

Attachment: 10597.diff added

Patch for #10597 - Fixed Admin Actions checkbox in IE6/7

comment:1 by Brian Rosner, 15 years ago

milestone: 1.1
Triage Stage: UnreviewedAccepted

comment:2 by Brian Rosner, 15 years ago

Resolution: fixed
Status: newclosed

(In [10135]) Fixed #10597 -- select all checkbox on admin changelist now works under IE 6 and 7. Thanks kyle.fox.

comment:3 by Jacob, 13 years ago

milestone: 1.1

Milestone 1.1 deleted

Note: See TracTickets for help on using tickets.
Back to Top