CGridView Filter First Column

Hi there,

after creating some cruds with gii I noticed that the filter function for the first column doesn’t work. I changed the column order and the new first column didn’t work but the others always do.

What exactly happens: After typing something into the textbox and change focus, the ajax loading graphic appears, the site content is updated and the textbox is empty + all results are still shown.

Example Code (no changes made after generating):


<?php $this->widget('zii.widgets.grid.CGridView', array(

	'id'=>'test-grid',

	'dataProvider'=>$model->search(),

	'filter'=>$model,

	'columns'=>array(

		'id',

		'url',

		'good',

		'bad',

		'type',

		array(

			'class'=>'CButtonColumn',

		),

	),

)); ?>