Opened 10 years ago
Closed 9 years ago
#22955 closed Bug (fixed)
Admin: reloading clears filter_horizontal entries on Firefox
Reported by: | anonymous | Owned by: | elky |
---|---|---|---|
Component: | contrib.admin | Version: | 1.6 |
Severity: | Normal | Keywords: | admin filter_horizontal reload |
Cc: | cmawebsite@… | Triage Stage: | Accepted |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | yes |
Easy pickings: | no | UI/UX: | no |
Description
In an admin page with a filter_horizontal, loading a page normally will load and save the entries of a filter_horizontal properly, but if you reload the filter_horizontal will be emptied, and if that page is saved those entries will be lost.
Reproduced with: Django 1.4.9, 1.6.2 and 1.6.5
Change History (15)
comment:1 by , 10 years ago
Triage Stage: | Unreviewed → Accepted |
---|
comment:2 by , 10 years ago
Resolution: | → duplicate |
---|---|
Status: | new → closed |
Actually this has been reported in #13614.
comment:3 by , 10 years ago
I think #13614 is actually a separate issue (although it seems there has been some discussion about this issue on #13614). The test html in comment 16 (https://code.djangoproject.com/ticket/13614#comment:16) seems to be working on Firfox 36.
I can confirm that this is still problem on Firefox 36 with Django 1.6.10, 1.7.5, 1.8b1. How can I reopen this bug?
comment:4 by , 10 years ago
Resolution: | duplicate |
---|---|
Status: | closed → new |
comment:5 by , 10 years ago
This pull request adds a failing test case to demonstrate the problem.
https://github.com/django/django/pull/4277
I'm not exactly sure what the way forward is for this issue. There seems to be a couple tickets that have full rewrite of the select filter js code. My primary interest is ensuring that any re-write of the select filter js code incorporates this test so that this problem gets fixed.
comment:6 by , 10 years ago
Cc: | added |
---|
comment:7 by , 10 years ago
Summary: | Admin: reloading clears filter_horizontal entries → Admin: reloading clears filter_horizontal entries on Firefox |
---|
I tested on Internet Explorer 9 and there's no problem there either. To me, this still seems like an issue that would be better addressed in Firefox itself so older versions of Django can benefit from the fix as well.
comment:8 by , 9 years ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
comment:9 by , 9 years ago
Just made pull request that fixes this problem: https://github.com/django/django/pull/5757
comment:10 by , 9 years ago
I couldn't reproduce this on master with Firefox 43.0 and bisected the change to 4a438e400b7ce0ab9d0b6876196cbe8d620a4171. It seems plausible this fixed the issue as the admin views are wrapped in never_cache()
. Can you reproduce those findings?
comment:11 by , 9 years ago
Can't reproduce it in the latest Firefox as well. Using Django 1.9. Seems my fix works for lower Django versions only.
comment:12 by , 9 years ago
Has patch: | set |
---|---|
Patch needs improvement: | set |
I think we can backport the fix for #13008 for 1.8 to fix this possible data loss issue there. Let's try to get the selenium test in your pull request working so we can add that too. Hopefully my review comments will help.
comment:13 by , 9 years ago
I backported the fix for #13008 to 1.8 in b51086d57313e7ea857f4b96b62d25e600ee0a8d so this should be resolved there.
comment:15 by , 9 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
I can reproduce with Firefox 30, but not Chrome 35. Which browser are you using? Tentatively accepting, but it may be a browser bug and not something we can/should fix in Django.