Page 1 of 1

Strict Search - Nextensio Strict Filter

Posted: 2022-03-23 11:19
by energylevels
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'

Re: Strict Search - Nextensio Strict Filter

Posted: 2022-03-23 11:30
by energylevels
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.