echo CHtml::activeCheckBox('myClass', 'myField', array('submit'=>Yii::app()->getRequest()->url));
when the checkbox is changed it should submit the form, but it does nothing with Internet Explorer while it functions perfectly in Firefox. It was also functioning with Internet Explorer with Yii version 1.1.0 before I upgrade to Yii 1.1.1.
I think the problem is related to upgrade of jquery to 1.4.2, if I see the code now it generate a code like this:
jQuery('#myClass_myField').live('click',function(){jQuery.yii.submitForm(this,'/myUrl',{});return false;});
instead in 1.1.0 this was the code:
jQuery('#myClass_myField').click(function(){jQuery.yii.submitForm(this,'/myUrl',{});return false;});
As I'm not a Jquery expert I don't understand if it's a Jquery bug or it is caused by an incorrect use in Yii.
Thanks for help.