Closed nchelix closed 5 years ago
DataTables allows a regex search joining values on "|" to filter on a column for multiple values.
Documented here: https://datatables.net/forums/discussion/6946/multiple-filters-on-same-column
Currently, the ability to join search criteria with a "|" does not produce the expected results.
Server side regex stuff is not implemented. Just use a custom column search and implement this logic yourself.
@nchelix As previously mentioned by @VictorioBerra, server-side regex search is not supported. I recommend to use GlobalSearchPredicate or CustomFilterPredicate (depend on your needs), see Sample2 and Sample3.
GlobalSearchPredicate
CustomFilterPredicate
DataTables allows a regex search joining values on "|" to filter on a column for multiple values.
Documented here: https://datatables.net/forums/discussion/6946/multiple-filters-on-same-column
Currently, the ability to join search criteria with a "|" does not produce the expected results.