Hi,
I’m using wbraganca/yii2-dynamicform in my project, but i cannot figure it out why it cannot duplicate the items. please advice. thanks before.
here is my project in github : pks-debug
you can go directly to this url to see the problem http://localhost:8080/purchase-order/create if running using yii serve
http://localhost:8080/purchase-order/create
Do you see any js errors in browser console?
I don’t see any erros in console.
I have figured it out what’s wrong. the ID in <?php $form = ActiveForm::begin(['id' => 'form-purchase-order']); ?> must be same as in dynamicFormWidget. <?php DynamicFormWidget::begin(['formId' => 'form-purchase-order', 'formFields' => [ ... ] ]);
<?php $form = ActiveForm::begin(['id' => 'form-purchase-order']); ?>
<?php DynamicFormWidget::begin(['formId' => 'form-purchase-order', 'formFields' => [ ... ] ]);