Serverside Individual Column Filtering with regex
Serverside Individual Column Filtering with regex
ChrisG
Posts: 29Questions: 0Answers: 0
Well so far I changed server_processing to allow for REGEX instead of LIKE. This works great for the global filter but not for individual column filtering... Anyone know why that might be? I feel like this shouldn't be as hard as it is to solve but it's giving me a headache.
I want to do something like this:
Column 0 has the following data:
Apple
Orange
Apple Banana
Pear
I want it so I can search "Apple Banana" and not have it include "Apple" in the filtering. If I do ^Apple Banana$ with global filtering, it works and filters to just Apple Banana, but if I try the same but specifying only a certain column, then it just breaks and returns both Apple Banana and Apple.
I want to do something like this:
Column 0 has the following data:
Apple
Orange
Apple Banana
Pear
I want it so I can search "Apple Banana" and not have it include "Apple" in the filtering. If I do ^Apple Banana$ with global filtering, it works and filters to just Apple Banana, but if I try the same but specifying only a certain column, then it just breaks and returns both Apple Banana and Apple.
This discussion has been closed.