Editor: editable select field
Editor: editable select field

Is there any way to make a field with type 'select' editable by user?
In other words, is there any way for user to input anything other then the options?
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
Not by default, but it is possible when using a library such as Select 2. However, special consideration needs to be made for the server-side when using Select 2 to create new values. Our provided libraries don’t create the new values for example, so you’d probably need to use a
preCreate
/preEdit
event hook to add them to the database. I don’t have an example of that I’m afraid.Allan
THANK YOU I overlooked the plugins...!