Yii: How to remove search from /admin page? -


yii 1.1.13.

on /index.php/employee/admin (autogenerated gii , modified me) search boxes shown zii.widgets.grid.cgridview.

how remove these search boxes altogether? want table without search.

(note don't want search because misbehaves composite models synthesizing data several tables , transforming different data format ui data format in db.)

when creating zii.widgets.grid.cgridview set property filter null.

$this->widget('zii.widgets.grid.cgridview', array('filter' => null, /* etc */)); 

Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -