Opened 21 years ago
Closed 20 years ago
#1105 closed defect (bug) (invalid)
Link category selection from keyboard
| Reported by: | kim | Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | Administration | Version: | 1.5 |
| Severity: | trivial | Keywords: | |
| Cc: | Focuses: |
Description
When adding a link (wp-admin/link-add.php) the list of categories is sorted by ID and has the ID prepended to the category name. To select a category using the keyboard, one would need to remember the numeric ID of the category.
I think usability would increase if the list was sorted by category name, so that the category can be selected by typing the first letter of the category (repeating the keypress will cycle down entries beginning with the same letter).
Attached patch implements this change.
Attachments (2)
Change History (4)
Note:
See TracTickets
for help on using tickets.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
To provide a more uniform UI to match with the suggested change, I modified the list of link categories (wp-admin/link-categories.php) to also sort by category name rather than ID by default. However, at times it can be useful to be able to locate a category easily by its ID number, so I also added sort order selection through links in the table heading cells (by ID and by name).
Second attached patch implements this.