dpodium / yii2-filemanager

14 stars 15 forks source link

Can Attach many files #1

Open onward-web opened 7 years ago

onward-web commented 7 years ago

I add form field and use widget: <?= $form->field($model, 'files')->widget(FileBrowse::className(), [ 'multiple' => true, // allow multiple upload 'folderId' => 1, // set a folder to be uploaded to. 'maxFileCount' => 50 ]) ?>

I would like to select multiple files in the Media Gallery, but I can only choose one. That is, a sample of several images is not supported? Or am I doing something wrong?

-2

seerjun commented 7 years ago

Hi, you're not doing something wrong, just multiple select is not supported in this widget. The multiple => true refers to multiple upload. Noted with this feedback and will put this for future enhancement :) But if you need the changes urgently, you may submit a pull request to us. Thanks!