Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Yii 1.1.13.
/index.php/employee/admin (Gii によって自動生成され、その後私が変更したもの) では、検索ボックスが zii.widgets.grid.CGridView によって表示されます。
これらの検索ボックスを完全に削除するにはどうすればよいですか? 検索せずにテーブルが欲しい。
(複数のテーブルからデータを合成し、DB のデータ形式とは異なる UI 用のデータ形式に変換する複合モデルで誤動作するため、検索は必要ないことに注意してください。)
を作成するときにzii.widgets.grid.CGridView、プロパティfilterをに設定しますnull。
zii.widgets.grid.CGridView
filter
null
$this->widget('zii.widgets.grid.CGridView', array('filter' => null, /* etc */));