-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Every filter is an autocomplete field #315
Comments
Have you tried setting the inputType data attribute for the field to "text" for the ones you want to be text? That's what the JS code checks for https://github.com/FriendsOfCake/crud-view/blob/master/webroot/js/local.js#L57 |
Sorry, I missed understood the issue. You can set the autocomplete config to false and then add |
True, but then the |
Not sure what the original author intended. But I agree the default doesn't make much sense. |
Given that the problem is circumvented by setting |
Autocomplete is now used by default only for |
When autocomplete is true, it forces every filter field to be an autocomplete select. It doesn't matter the name of the field or the field options set in the SearchManager or the ViewSearch listener.
Setting autocomplete to false solves the issue but this renders the option useless.
The text was updated successfully, but these errors were encountered: