Opened 16 years ago
Closed 16 years ago
#4003 closed (wontfix)
Added tooltips (title=) to newforms.widgets.Select
Reported by: | Owned by: | Adrian Holovaty | |
---|---|---|---|
Component: | Forms | Version: | dev |
Severity: | Keywords: | ||
Cc: | Triage Stage: | Design decision needed | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
It is useful to have tooltips in dropdown list.
So I created a SelectWTitle widget, that processes third choice's item value as an option title. I also fixed newforms.fields.py to process three-values items.
I'm not sure in widget's name - maybe there's a better name for it.
Usage example:
>>> AgentForm(newforms.Form): record_type = forms.ChoiceField(widget=SelectWTitle, choices=[('agname', 'Agent name', 'Name of the agent that makes the action')]) >>> print AgentForm() <select> <option value='agname' title='Name of the agent that makes the action'>Agent name</option> </select>
Attachments (1)
Change History (3)
Changed 16 years ago by
Attachment: | SelectWTitle.diff added |
---|
comment:1 Changed 16 years ago by
Summary: | Added toottips (title=) to newforms.widgets.Select → Added tooltips (title=) to newforms.widgets.Select |
---|---|
Triage Stage: | Unreviewed → Design decision needed |
comment:2 Changed 16 years ago by
Resolution: | → wontfix |
---|---|
Status: | new → closed |
Not worth including in core. Best practice is that select names should be descriptive enough on their own. You might want to post it to Django snippets, though, for people who would find this useful.
Not really my cup of tea, but I'll leave it to core devs to decide.