Opened 16 years ago

Closed 16 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
Pull Requests:How to create a pull request

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).

Change History (4)

by kyle.fox@…, 16 years ago

Attachment: 10597.diff added

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

comment:1 by Brian Rosner, 16 years ago

milestone: 1.1
Triage Stage: UnreviewedAccepted

comment:2 by Brian Rosner, 16 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