Skip to content

Prevent column being searchable

You can use advanced method set_col_property to disable column from being searchable.
See http://phpgrid.com/documentation/set_col_property/

Example:
$dg->set_col_property('COLUMN_NAME', array('search'=>false));

Feedback and Knowledge Base