I'm using yii2-redactor. I'm trying to generally disable file drag and drop. Is there an option for this?
Thank you.
Option dragUpload
didn't work for me. I found here a couple of options which worked for me. Example below.
<?= $form->field($model, 'body')->widget(\yii\redactor\widgets\Redactor::className(), [
'clientOptions' => [
'dragImageUpload' => false,
'dragFileUpload' => false
]
])?>