feat(TableColumnFilter): add StringComparison parameter #6158
-
Is there an existing issue for this?
Is your feature request related to a problem? Please describe the problem.Hi, I am using the TableColumn, with Filterable="true". I was wondering if it would be possible to add something, that allows me to modify the Search function, such that I can add case-insensitive comparison, like most of the search fields do. you can try with the demo app: Thank you very much. Describe the solution you'd likeNo response Additional contextNo response |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
@cyberwaelder-a Thank you for contacting us. We will give feedback later. |
Beta Was this translation helpful? Give feedback.
-
@cyberwaelder-a hi thank you for contacting us. StringComparison should not be set by the Filter component. I think it should be implemented by the user. For example, if it is used as a database filter condition, whether to ignore case should be determined by the database culture. |
Beta Was this translation helpful? Give feedback.
-
hi @ArgoZhang thanks for your response. but it is more complex to implement if the data is already in memory or is loaded via api. |
Beta Was this translation helpful? Give feedback.
@cyberwaelder-a So you should check if it is a
Contains
condition in your application, and you need to implement case sensitivity yourself.all the filters already in
QueryPageOptions