When adding and removing error messages, I want to resize the entire form. (Via javascript)
If I use crutches (I look at the appearance of these messages (divs), etc.), then it turns out to be an out of sync, adding a delay ( setTimeout ) does not help much.
I stuck my function so far in /framework/web/js/source/jquery.yiiactiveform.js where the code is executed when these messages appear (3 places) - everything is perfect.
<?php $activeform = $this->beginWidget('CActiveForm', array( 'id'=>'form', 'enableAjaxValidation' => true, 'enableClientValidation' => true, 'clientOptions'=>array( 'validateOnSubmit' => true, 'validateOnChange' => true, ), ));