Improved ajax validation of ActiveForm

Currently, the Ajax validation of CActiveForm apply to all rules every time.

This will lead to a lot of unnecessary verification, and may even result in failure on CAPTCHA.

I strongly hope that Yii official team can fix this issue, Here is my patch for ‘jquery.yiiactiveform.js’

[some contents deleted]

Now use the EActiveForm extension I wrote to achieve this functionality.

see: http://www.yiiframework.com/extension/eactiveform/

Why the need to post two times the same thing - http://www.yiiframework.com/forum/index.php?/topic/12930-improve-ajax-validation-of-activeform/

Sorry, but I can not find the way to delete this post…

No need… now it will stay here as a reminder to others to NOT post the same question on multiple sub-forums…

@all

If for any reason you make a post and then decide to post it on another sub-forum that would better suit the question, do NOT post the same post again… just send a PM to anyone of the dev. team members and we will move the post where you want it… or even better you can "report" it, so the first member of the dev team that logs on the forum will see your report and act accordingly…

Now, I wrote the EActiveForm extension, can achieve this functionality without the need for it to modify core script ‘jquery.yiiactiveform.js’ again.

In addition, it support for the client-side javascript validation before sending ajax request, all validation rules are converted from CValidator automatically.

See: http://www.yiiframework.com/extension/eactiveform/