Filter (dropdown list) not working in IE

In my database I store the "active" attribute as an integer (1/0), in my view I transform this into text (Yes/No):

Model:


public function getIsActive()

{

	return $this->active ? 'Yes' : 'No';

}

I have implemented filters in my View:


array(

	'name'=>'active',

	'value'=>'$data->isActive',

	'filter'=>array('1'=>'Yes', '0'=>'No'),

),

search() function:


$criteria->compare('active', $this->active);

The filter works OK in Firefox but not in IE ( 7/8 ).

Anyone able to advise? Thanks!

Looks like a bug. Please fill a report: http://code.google.com/p/yii/issues/list

I found some workaround: http://code.google.com/p/yii/issues/detail?id=1031&q=filter&colspec=ID%20Type%20Status%20Priority%20Milestone%20Owner%20Stars%20Summary

any progress with this issue?

how to solve it?

i not using svn yet.

???