$col[“searchoptions”]=array(“value” =>NOT NULL”:IS NOT NULL;”.$str);
is possible?
1 Answers
By default, these operators are present in search dialog.
‘nu’=>” IS NULL ”
‘nn’=>” IS NOT NULL ”
If you only want to show ‘null’ and ‘not null’ OR limited operators you can set using:
$col[“searchoptions”][“sopt”] = array(“nn”,”nu”);
Refer docs: http://phpgrid.org/docs/column-options/#limit-column-search-operators
Your Answer