[size="2"][size="2"]I still have an error with the lastest revision r3538[font="arial, sans-serif"], the chrome console throw the following error:[/font][/size][/size]
[font="arial, sans-serif"] [/font][font="arial, sans-serif"]
[size=“2”]Uncaught TypeError: Cannot read property ‘tagName’ of undefined[/size]
[size="2"]getAFValue - jquery.yiiactiveform.js:20[/size]
[size="2"]$.fn.yiiactiveform.each.settings.submitting - jquery.yiiactiveform.js:59[/size]
[size="2"]e.extend.each - jquery.min.js:2[/size]
[size="2"]$.fn.yiiactiveform - jquery.yiiactiveform.js:46[/size]
[size="2"]e.extend.each - jquery.min.js:2[/size]
[size="2"]e.fn.e.each - jquery.min.js:2[/size]
[size="2"]$.fn.yiiactiveform - jquery.yiiactiveform.js:39[/size]
[size="2"](anonymous function) /cms_base/public_html/index.php?r=msadmin/access:96[/size]
[size="2"]f.Callbacks.n - jquery.min.js:2[/size]
[size="2"]f.Callbacks.o.fireWith - jquery.min.js:2[/size]
[size="2"]e.extend.ready - jquery.min.js:2[/size]
[size="2"]c.addEventListener.B - jquery.min.js:2[/size] [/font]
[font="arial, sans-serif"]
[/font]
[font="arial, sans-serif"]
[/font][size="2"][font="Consolas,"]and this is my form:[/font][/size][size="2"][font="Consolas,"]
[/font][/size][size="2"][font="Consolas,"]
<h2><?php echo Yii::t('login', 'SYSTEM ACCESS'); ?></h2>[/size]
<?php
/* @var $form CActiveForm */
$form = $this->beginWidget('CActiveForm', array(
'id' => 'login-form',
'enableClientValidation' => true,
'clientOptions' => array(
'validateOnSubmit' => true
)
)
);
?>
<?php echo !$form->error($model, '_main', array('class'=>'messagebox error'))?>
<div class="row">
<?php echo $form->labelEx($model, 'username'); ?>
<?php echo $form->textField($model, 'username', array('class'=>'tf')); ?>
<?php echo $form->error($model, 'username'); ?>
</div>
<div class="row">
<?php echo $form->labelEx($model, 'password'); ?>
<?php echo $form->passwordField($model, 'password', array('class'=>'tf')); ?>
<?php echo $form->error($model, 'password'); ?>
</div>
<div class="row buttons">
<?php echo CHtml::submitButton(Yii::t('login','LOGIN'), array('class'=>'chunky', 'id'=>'ms-loginBtn')); ?>
</div>
<?php $this->endWidget(); ?>[/font][/size]
[size="2"][font="Consolas,"]
[/font][/size][size="2"][font="Consolas,"]
[/font][/size][size="2"][font="Consolas,"]The weird thing is that it works in v1.1.8[/font][/size]
[size="2"][font="Consolas,"][/font][/size][size="2"][font="Consolas,"]
[/font][/size][size="2"][font="Consolas,"]Thanks in advice for your help.
[/font]
[/size]