the filters at the top of the grid are great, but I have on column on the grid that I would rather have an exact match rather than contains.
is there an option or setting I can apply to one of the columns so that a filter for 101 finds ONLY 101 and not 1012, 2101 etc.
thanks
Roy
1 Answers
With that column in which you want exact search:
$col[“searchoptions”][“sopt”] = array(“eq”);
Other options are:
// optionally set limited search operators (e.g. bw = begins with, ‘eq’,’ne’,’lt’,’le’,’gt’,’ge’,’bw’,’bn’,’in’,’ni’,’ew’,’en’,’cn’,’nc’)
Your Answer