several fix and enhancements by fabienwnklr · Pull Request #1906 · selectize/selectize.js
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is a problem with ReadOnly.
If the person clicks on the input and types something on the physical keyboard the input will remain empty, but selectize will filter the items and will work anyway.
To fix this just listen to the focus event and when the input receives focus you apply a blur. That way the input will never be focused and the person will never be able to type anything and we won't have any problems.