Johnston
Johnston

Reputation: 20914

How do you set monaco-editor from readonly to writeable?

In my code I created an editor like so:

this.monacoEditor = monaco.editor
  .create(
    document.getElementById('ide'), {
      model: null,
      readOnly: true,
      contextmenu: false,
    }
  );

So now that editor is readonly. How would I change this.monacoEditor to be writable/editable?

Upvotes: 9

Views: 7741

Answers (1)

Johnston
Johnston

Reputation: 20914

I figured it out. In the context of the code above:

this.monacoEditor.updateOptions({readOnly: false});

Upvotes: 14

Related Questions