#10597: Admin Actions "Select all" checkbox doesn't work in IE6/7
--------------------------------------------------+-------------------------
Reporter: [email protected] | Owner: nobody
Status: new | Milestone:
Component: django.contrib.admin | Version: SVN
Keywords: javascript, admin, admin actions, IE | Stage: Unreviewed
Has_patch: 0 |
--------------------------------------------------+-------------------------
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).
--
Ticket URL: <http://code.djangoproject.com/ticket/10597>
Django <http://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---