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