Hi,
ich erhalte von yii folgenden seltsamen Fehler
und das obwohl ich alles richtig nach dem guide eingebaut habe
<div id="suggestionTab">
<?php $oForm=$this->beginWidget('CActiveForm', array(
'id'=>'tab-suggestions-form',
'enableAjaxValidation'=>true,
'clientOptions' => array(
'validateOnSubmit' => true,
'validateOnChange' => true,
'validateOnType' => true,
)
)); ?>
Wenn ich mir den Quellcode anschaue, dann scheint auch alles korrekt zu sein:
form id="tab-suggestions-form" action="/suggestions" method="post">
<table class="translation clearfix">
<thead>
<tr>
...
$('#tab-suggestions-form').yiiactiveform({'validateOnSubmit':true,'validateOnChange':true,'validateOnType':true,'attributes':[{'id':'Suggestions_phrase1','inputID':'Suggestions_phrase1','errorID':'Suggestions_phrase1_em_','model':'Suggestions','name':'phrase1','enableAjaxValidation':true}]});
Kann sich das jemand erklären?