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'
Strict Search - Nextensio Strict Filter
-
- Posts: 11
- Joined: 2012-07-22 15:40
Re: Strict Search - Nextensio Strict Filter
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:
CHANGE TO
STRING TYPE columns are are relaxed searched by default.
You do it like this example:
Code: Select all
$tfi_mylist->addColumn("my_col", "STRING_TYPE", "my_col", "%");
Code: Select all
$tfi_mylist->addColumn("my_col", "STRING_TYPE", "my_col", "=");