HI,
I created a dropdownlist column for Cgridview. also binded some event as following
Yii::app()->clientScript->registerScript('search',
"
$('.status_select').change(function() {
alert($(this).attr('id'));
});
");
The problem is the event only triggers on the first page of the gridview…
Please help. thanks