Opened 18 years ago
Closed 16 years ago
#1888 closed defect (fixed)
Small interface inaccuracy when using filter_interface=models.VERTICAL
Reported by: | wnielson | Owned by: | Ryan Kanno |
---|---|---|---|
Component: | contrib.admin | Version: | |
Severity: | normal | Keywords: | sprintsept14 |
Cc: | Triage Stage: | Ready for checkin | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
when using
models.ManyToManyField(filter_interface=models.VERTICAL)
the arrow icon next to
Select your choice(s) and click
points to the right and should point down. In addition,
'Choose all', 'Clear all'
options do not appear in this mode.
Attachments (1)
Change History (7)
comment:1 Changed 17 years ago by
Summary: | 'Select your choice(s) and click' issues → Small interface inaccuracy when using filter_interface=models.VERTICAL |
---|
comment:2 Changed 17 years ago by
Triage Stage: | Unreviewed → Accepted |
---|
comment:3 Changed 16 years ago by
Has patch: | set |
---|---|
Owner: | changed from nobody to Ryan Kanno |
Widgets.css has the following:
.stacked .selector-chooseall, .stacked .selector-clearall { display:none; }
so it's apparent chooseall and clearall were hidden for models.VERTICAL.
The attached patch corrects the other small issue.
comment:4 Changed 16 years ago by
Keywords: | sprintsept14 added |
---|
Changed 16 years ago by
Attachment: | django_filter_interface.diff added |
---|
more DRY as suggested by SmileyChris
comment:5 Changed 16 years ago by
Triage Stage: | Accepted → Ready for checkin |
---|
comment:6 Changed 16 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
Albiet small, it sounds like a valid bug.