Answer the question
In order to leave comments, you need to log in
How to upload MultipleInput files in Yii2?
How to upload files in the unclead\multipleinput\MultipleInput extension, just to send files to the controller. Now only file names are sent.
Here is the code in form.php:
<?= $form->field($model, 'plan')->widget(\unclead\multipleinput\MultipleInput::className(), [
//'max' => 4,
'columns' => [
[
'name' => 'planImage',
'title' => 'Картинка плана этажа',
'type' => 'fileInput',
],
[
'name' => 'planRange',
'title' => 'Диапозон этажей',
'enableError' => true,
'options' => [
'class' => 'input-priority'
]
]
]
]);
?>
Answer the question
In order to leave comments, you need to log in
Open the html of the page and make sure you have a multipart/form-data form
or developer console and see what type of form is submitted
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question