Search code examples
yii2yii2-advanced-appredactorredactor.js

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


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

Thank you.


Solution

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