I'm using DataTables with yadcf. I'd like to implement tag selection. I found the example here: https://stackoverflow.com/a/35254351/2604492
But it uses filter_match_mode=contains (the default), which means that if there are e.g. two tags, php and not-php, choosing php will match not-php too as the former is contained in the latter.
Example: https://jsfiddle.net/o7hv6qpy/
With filter_match_mode=exact it just stops working.
Any solution?
One way to achieve it is to use the
custom_funclike shown below.You can put your
exactlogic into thecustom_funcimplementation