I really getting clueless here:
CActiveForm enableAjaxValidation is set to FALSE.
<?php $form=$this->beginWidget('CActiveForm', array(
'id'=>'team-form',
'enableAjaxValidation'=>false,
'enableClientValidation'=>true,
'clientOptions'=>array(
'validateOnSubmit'=>true,
),
'htmlOptions' => array('enctype' => 'multipart/form-data'),
)); ?>
On the controller, I have this line commented:
//$this->performAjaxValidation(array($model,$member));
Still, each time I pass trough the fields, I get the rules messages that setup on the MODEL, so it IS indeed, doing a ajax validation.
Why could this be ?