I want to use a filter row on the head of the table:
i set the filter property like this:
‘filter’ => $model
there is a filter row displayed but if i try to filter for something (e.g. FirstName: jon) and press enter. Nothing happens. All rows are shown like before and not only the rows with firstname jon…
my action looks like this:
public function actionMyAction()
{
$model=new Model('search');
$dataProvider = new CActiveDataProvider(
..........
));
$this->render('publiclists',array(
'dataProvider'=>$dataProvider,
'model' => $model
));
}