Strict Search - Nextensio Strict Filter

energylevels
Posts: 11
Joined: 2012-07-22 15:40

Strict Search - Nextensio Strict Filter

Post by energylevels » 2022-03-23 11:19

Hello - anyone know how to change the nextensio filter to strict search?

By default if a column is searched for : 'widgets' it will return for example 'widgets', 'large widgets' 'blue widgets' ... I want to change it to exact match so it only returns 'widgets'

energylevels
Posts: 11
Joined: 2012-07-22 15:40

Re: Strict Search - Nextensio Strict Filter

Post by energylevels » 2022-03-23 11:30

Not worries, I found it, it is so long since I looked at this code I couldn't remember:

You do it like this example:

Code: Select all

 $tfi_mylist->addColumn("my_col", "STRING_TYPE", "my_col", "%");
CHANGE TO

Code: Select all

 $tfi_mylist->addColumn("my_col", "STRING_TYPE", "my_col", "=");
STRING TYPE columns are are relaxed searched by default.

Post Reply