<?php
if(!isset($data)) {$data=array(); };
$this->widget('ext.multimodelform.MultiModelForm',array(
'id' => 'id_ssc_affliations', //the unique widget id
'formConfig' => $myFormConfig, //the form configuration array
'model' => $model, //instance of the form model
'tableView'=>true,
'data'=>$data,
'bootstrapLayout'=>true,
'addItemAsButton'=>true,
'jsAfterNewId'=>MultiModelForm::afterNewIdDateTimePicker($myFormConfig['elements']),
//if submitted not empty from the controller,
//the form will be rendered with validation errors
//'validatedItems' => $validatedMembers,
//array of member instances loaded from db
//'data' => $member->findAll('groupid=:groupId', array(':groupId'=>$model->id)),
));
?>
我得到這個錯誤,請幫我包括(MultiModelForm.php):未能打開流:沒有這樣的文件或目錄
錯誤500 包括(MultiModelForm.php):未能打開流:沒有這樣的文件或目錄
檢查您的文件權限 – user1234
是啊..我已經給了。它的作品完美。但是當我想在多模式表單中添加DatePIcker時發生此錯誤... – Tilak