CGrid Customization

In the Grid for results, how can you assign an id to the quick search box?.. Thanks

Use "filter" property of CDataColumn:




'columns' => array(

	array(

		'name' => 'someAttribute',

		'filter' => CHtml::activeTextField($model, 'someAttribute', array('id' => 'my-id'),

	),

),



Thanks, that helped…