this.container.documentEditor. showRestrictEditingPane();
|
let container: DocumentEditorContainer = new DocumentEditorContainer({ enableToolbar: true, height: '590px' });
container.appendTo('#container');
// To hide restrict editing pane. Set true, to show pane.
container.documentEditor.showRestrictEditingPane(false); |