How can I disable drag and drop on extension Redactor v10.1.1 for Yii2 framework?

131 Views Asked by At

I'm using yii2-redactor. I'm trying to generally disable file drag and drop. Is there an option for this?

Thank you.

2

There are 2 best solutions below

0
On BEST ANSWER

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
  ]
])?>
0
On

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
  ]
])?>