-
Notifications
You must be signed in to change notification settings - Fork 272
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
feat(ui5-multi-combobox): introduces filter property #2088
Conversation
Buildin filters are - StartsWithPerTerm - StartsWith - Contains - None FIXES: #799
* @defaultvalue "StartsWithPerTerm" | ||
* @public | ||
*/ | ||
filter: { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should not be string, but an enum
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
MultiComboBox has not really a use case for e.g. contains filter, for the end user the API works fine (the same way as an enum), we can discuss this internally if it is worth to be changed.
StartsWithPerTerm, | ||
StartsWith, | ||
Contains, | ||
None, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a real use-case for this filter?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In case the user wants to have a free text without filtering or implement filtering on the backend this would be a solution.
FIXES: #1735 |
Build-in filters are - StartsWithPerTerm - StartsWith - Contains - None Users can now set filter to None and filter when input event is fired FIXES: SAP#799
Build-in filters are - StartsWithPerTerm - StartsWith - Contains - None Users can now set filter to None and filter when input event is fired FIXES: #799
Available filters are
FIXES: #799