When you add a news post as admin, show either existing categories as a filtered list as you type:
existing: "Studio", "Songwriting", "Recording"
If you type s, you would see "Studio" and "Songwriting".
If you write r, you would see "Recording".
If you write o, you would see nothing, because nothing begins with o or O.
Or maybe even a fulltext regexp?
So, o would show all categories (each has o in it).
r would show "Songwriting" and "Recording"
u would show "Studio".
Remember to update the list after a small delay (100 ms?) to improve perceived behaviour.
Or it could simply be a full list showing up, since there will not be too many categories. Maybe 10 - 15 total.
When you add a news post as admin, show either existing categories as a filtered list as you type:
existing: "Studio", "Songwriting", "Recording" If you type
s
, you would see "Studio" and "Songwriting". If you writer
, you would see "Recording". If you writeo
, you would see nothing, because nothing begins witho
orO
.Or maybe even a fulltext regexp? So,
o
would show all categories (each haso
in it).r
would show "Songwriting" and "Recording"u
would show "Studio".Remember to update the list after a small delay (100 ms?) to improve perceived behaviour.
Or it could simply be a full list showing up, since there will not be too many categories. Maybe 10 - 15 total.