I'm currently working with a nested dynamicform where everytime I click on the add button the select2 its just empty
I tried with many forms to show it after the insert and the problem persist.
This just happen on the nested one, the others works perfectly fine
This is the code for the nested dynamicform:
<?php
use yii\helpers\Html;
use yii\helpers\Url;
use yii\helpers\ArrayHelper;
use yii\widgets\ActiveForm;
use kartik\select2\Select2;
use wbraganca\dynamicform\DynamicFormWidget;
use app\modules\intercentral\models\RfoCorteFibrasReserva;
Hi,
I'm currently working with a nested dynamicform where everytime I click on the add button the select2 its just empty I tried with many forms to show it after the insert and the problem persist.
This just happen on the nested one, the others works perfectly fine
This is the code for the nested dynamicform:
<?php
use yii\helpers\Html; use yii\helpers\Url; use yii\helpers\ArrayHelper; use yii\widgets\ActiveForm; use kartik\select2\Select2; use wbraganca\dynamicform\DynamicFormWidget;
use app\modules\intercentral\models\RfoCorteFibrasReserva;
?>
<?php DynamicFormWidget::begin([ 'widgetContainer' => 'dynamicform_inner', 'widgetBody' => '.container-fibras', 'widgetItem' => '.fibras-item', 'min' => 1, 'insertButton' => '.add-fibras', 'deleteButton' => '.remove-fibras', 'model' => $fibrasReserva[0], 'formId' => 'dynamic-form', 'formFields' => [ 'description' ], ]); ?>
<?php DynamicFormWidget::end(); ?>