Hi,
How can I render a view inside other ?
I mean i'd like to use a file _form.php (inside folder views/taxonimicelements) resulted of a CRUD command in other file _form.php (inside views/recordlevelelements) also resulted of a CRUD command but related with a different table
I'm trying this code below:
echo Yii::app()->controller->renderPartial('taxonomicelements/_form', array( 'taxonomicelements'=>$taxonomicelements, 'recordlevelelements'=>$recordlevelelements, 'update'=>false, ));
Any suggestions ?