Dialog in React Document editor component

1 Dec 202322 minutes to read

Document Editor provides dialog support to major operations such as insert or edit hyperlink, formatting text, paragraph, style, list and table properties.

Font Dialog

Font dialog allows you to modify all text properties for selected contents at once such as bold, italic, underline, font size, font color, strikethrough, subscript and superscript.

Document Editor features are segregated into individual feature-wise modules. To use font Dialog, inject ‘FontDialog’ module using the ‘DocumentEditor.Inject(Selection, SfdtExport, Editor, FontDialog)’.
To enable font dialog for a document editor instance, set ‘enableFontDialog’ to true.

Refer to the following example.

import * as ReactDOM from 'react-dom';
import * as React from 'react';
import { DocumentEditorComponent, SfdtExport, Selection, Editor, FontDialog } from '@syncfusion/ej2-react-documenteditor';
DocumentEditorComponent.Inject(SfdtExport, Selection, Editor, FontDialog);
let documenteditor;
function App() {
    return (<div>
      <button onClick={showFontDialog}>Dialog</button>
      <DocumentEditorComponent id="container" height={'330px'} ref={(scope) => { documenteditor = scope; }} isReadOnly={false} enableSelection={true} enableEditor={true} enableSfdtExport={true} enableFontDialog={true}/>
    </div>);
    function showFontDialog() {
        //Open font dialog.
        documenteditor.showDialog('Font');
    }
}
export default App;
ReactDOM.render(<App />, document.getElementById('sample'));
import * as ReactDOM from 'react-dom';
import * as React from 'react';
import { DocumentEditorComponent, SfdtExport, Selection, Editor, FontDialog } from '@syncfusion/ej2-react-documenteditor';

DocumentEditorComponent.Inject(SfdtExport, Selection, Editor, FontDialog);
let documenteditor: DocumentEditorComponent;
function App() {
  return (
    <div>
      <button onClick={showFontDialog}>Dialog</button>
      <DocumentEditorComponent id="container" height={'330px'} ref={(scope) => { documenteditor = scope; }} isReadOnly={false} enableSelection={true} enableEditor={true} enableSfdtExport={true} enableFontDialog={true} />
    </div>
  );
  function showFontDialog() {
    //Open font dialog.
    documenteditor.showDialog('Font');
  }
}
export default App
ReactDOM.render(<App />, document.getElementById('sample'));
<!DOCTYPE html>
<html lang="en">

<head>
    <title>Syncfusion React Button</title>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta name="description" content="Essential JS 2 for React Components" />
    <meta name="author" content="Syncfusion" />
    <link href="index.css" rel="stylesheet" />
    <link href="https://cdn.syncfusion.com/ej2/25.1.35/ej2-react-documenteditor/styles/fabric.css" rel="stylesheet" />
    <link href="https://cdn.syncfusion.com/ej2/25.1.35/ej2-react-navigations/styles/fabric.css" rel="stylesheet" />
    <link href="https://cdn.syncfusion.com/ej2/25.1.35/ej2-documenteditor/styles/fabric.css" rel="stylesheet" />
    <link href="https://cdn.syncfusion.com/ej2/25.1.35/ej2-buttons/styles/fabric.css" rel="stylesheet" />
    <link href="https://cdn.syncfusion.com/ej2/25.1.35/ej2-base/styles/fabric.css" rel="stylesheet" />
    <link href="https://cdn.syncfusion.com/ej2/25.1.35/ej2-dropdowns/styles/fabric.css" rel="stylesheet" />
    <link href="https://cdn.syncfusion.com/ej2/25.1.35/ej2-inputs/styles/fabric.css" rel="stylesheet" />
    <link href="https://cdn.syncfusion.com/ej2/25.1.35/ej2-lists/styles/fabric.css" rel="stylesheet" />
    <link href="https://cdn.syncfusion.com/ej2/25.1.35/ej2-navigations/styles/fabric.css" rel="stylesheet" />
    <link href="https://cdn.syncfusion.com/ej2/25.1.35/ej2-popups/styles/fabric.css" rel="stylesheet" /> 
    <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" />
    <script src="https://cdnjs.cloudflare.com/ajax/libs/systemjs/0.19.38/system.js"></script>
    <script src="systemjs.config.js"></script>
<script src="https://cdn.syncfusion.com/ej2/syncfusion-helper.js" type ="text/javascript"></script>
</head>

<body>
        <div id='sample'>
            <div id='loader'>Loading....</div>
        </div>
</body>

</html>

Paragraph dialog

This dialog allows modifying the paragraph formatting for selection at once such as text alignment, indentation, and spacing.

To open this dialog, refer to the following example.

import * as ReactDOM from 'react-dom';
import * as React from 'react';
import { DocumentEditorComponent, SfdtExport, Selection, Editor, ParagraphDialog } from '@syncfusion/ej2-react-documenteditor';

//Inject require modules.
DocumentEditorComponent.Inject(SfdtExport, Selection, Editor, ParagraphDialog);
function App() {
    let documenteditor: DocumentEditorComponent;
        return (
            <div>
                <button onClick={showParagraphDialog}>Dialog</button>
                <DocumentEditorComponent id="container" height={'330px'} ref={(scope) => {documenteditor = scope; }} isReadOnly={false} enableSelection={true} enableEditor={true} enableSfdtExport={true} enableParagraphDialog={true} />
            </div>
        );
        function showParagraphDialog(){
          //Open paragraph dialog.
         documenteditor.showDialog('Paragraph');
      }
}
export default App
ReactDOM.render(<App />, document.getElementById('sample'));

Table dialog

This dialog allows creating and inserting a table at cursor position by specifying the required number of rows and columns.

To open this dialog, refer to the following example.

import * as ReactDOM from 'react-dom';
import * as React from 'react';
import {
  DocumentEditorComponent, SfdtExport, Selection, Editor, TableDialog
} from '@syncfusion/ej2-react-documenteditor';


DocumentEditorComponent.Inject(SfdtExport, Selection, Editor, TableDialog);
function App() {
  let documenteditor: DocumentEditorComponent = new DocumentEditorComponent(undefined);
  function ShowTableDialog() {
    //Open table dialog.
    documenteditor.showDialog('Table');
  }
  return (
    <div>
      <button onClick={ShowTableDialog}>Dialog</button>
      <DocumentEditorComponent id="container" height={'330px'} ref={(scope) => { documenteditor = scope; }} isReadOnly={false} enableSelection={true} enableEditor={true} enableSfdtExport={true} enableTableDialog={true} />
    </div>
  );
}
export default App
ReactDOM.render(<App />, document.getElementById('sample'));

Bookmark dialog

This dialog allows you to perform the following operations:

  • View all bookmarks.
  • Navigate to a bookmark.
  • Create a bookmark at current selection.
  • Delete an existing bookmark.
    To open this dialog, refer to the following example.
import * as ReactDOM from 'react-dom';
import * as React from 'react';
import {
  DocumentEditorComponent, SfdtExport, Selection, Editor, BookmarkDialog
} from '@syncfusion/ej2-react-documenteditor';


DocumentEditorComponent.Inject(SfdtExport, Selection, Editor, BookmarkDialog);
function App() {
  let documenteditor: DocumentEditorComponent = new DocumentEditorComponent(undefined);
  function ShowBookmarkDialog() {
    //Open bookmark dialog.
    documenteditor.showDialog('Bookmark');
  }
  return (
    <div>
      <button onClick={ShowBookmarkDialog}>Dialog</button>
      <DocumentEditorComponent id="container" height={'330px'} ref={(scope) => { documenteditor = scope; }} isReadOnly={false} enableSelection={true} enableEditor={true} enableSfdtExport={true} enableBookmarkDialog={true} />
    </div>
  );
}
export default App;
ReactDOM.render(<App />, document.getElementById('sample'));

This dialog allows editing or inserting a hyperlink at cursor position.

To open this dialog, refer to the following example.

import * as ReactDOM from 'react-dom';
import * as React from 'react';
import {
  DocumentEditorComponent, SfdtExport, Selection, Editor, HyperlinkDialog
} from '@syncfusion/ej2-react-documenteditor';


DocumentEditorComponent.Inject(SfdtExport, Selection, Editor, HyperlinkDialog);
function App() {
  let documenteditor: DocumentEditorComponent = new DocumentEditorComponent(undefined);
  function ShowHyperlinkDialog() {
    //Open hyperlink dialog;
    documenteditor.showDialog('Hyperlink');
  }
  return (
    <div>
      <button onClick={ShowHyperlinkDialog}>Dialog</button>
      <DocumentEditorComponent id="container" height={'330px'} ref={(scope) => { documenteditor = scope; }} isReadOnly={false} enableSelection={true} enableEditor={true} enableSfdtExport={true} enableHyperlinkDialog={true} />
    </div>
  );
}
export default App;
ReactDOM.render(<App />, document.getElementById('sample'));

Table of contents dialog

This dialog allows creating and inserting table of contents at cursor position. If the table of contents already exists at cursor position, you can customize its properties.

To open this dialog, refer to the following example.

import * as ReactDOM from 'react-dom';
import * as React from 'react';
import {
  DocumentEditorComponent, SfdtExport, Selection, Editor, TableOfContentsDialog
} from '@syncfusion/ej2-react-documenteditor';
DocumentEditorComponent.Inject(SfdtExport, Selection, Editor, TableOfContentsDialog);
function App() {
  let documenteditor: DocumentEditorComponent = new DocumentEditorComponent(undefined);
  function ShowTableOfContentsDialog() {
    //Open table of contents dialog.
    documenteditor.showDialog('TableOfContents');
  }
  return (
    <div>
      <button onClick={ShowTableOfContentsDialog}>Dialog</button>
      <DocumentEditorComponent id="container" height={'330px'} ref={(scope) => { documenteditor = scope; }} isReadOnly={false} enableSelection={true} enableEditor={true} enableSfdtExport={true} enableTableOfContentsDialog={true} />
    </div>
  );
}
export default App
ReactDOM.render(<App />, document.getElementById('sample'));

Styles Dialog

This dialog allows managing the styles in a document. It will display all the styles in the document with options to modify the properties of the existing style or create new style with the help of ‘Style dialog’. Refer to the following example.

import * as ReactDOM from 'react-dom';
import * as React from 'react';
import {
  DocumentEditorComponent, SfdtExport, Selection, Editor, StyleDialog, StylesDialog
} from '@syncfusion/ej2-react-documenteditor';

//Inject require modules.
DocumentEditorComponent.Inject(SfdtExport, Selection, Editor, StyleDialog, StylesDialog);
function App() {
  let documenteditor: DocumentEditorComponent;
  function ShowStylesDialog() {
    //Open styles dialog.
    documenteditor.showDialog('Styles');
  }
  return (
    <div>
      <button onClick={ShowStylesDialog}>Dialog</button>
      <DocumentEditorComponent id="container" height={'330px'} ref={(scope) => { documenteditor = scope; }} isReadOnly={false} enableSelection={true} enableEditor={true} enableSfdtExport={true} enableStyleDialog={true} />
    </div>
  );
}
export default App
ReactDOM.render(<App />, document.getElementById('sample'));

Style dialog

You can directly use this dialog for modifying any existing style or add new style by providing the style name.

To open this dialog, refer to the following example.

import * as ReactDOM from 'react-dom';
import * as React from 'react';
import {
  DocumentEditorComponent, SfdtExport, Selection, Editor, StyleDialog
} from '@syncfusion/ej2-react-documenteditor';

//Inject require modules.
DocumentEditorComponent.Inject(SfdtExport, Selection, Editor, StyleDialog);
function App() {
  let documenteditor: DocumentEditorComponent;
  function ShowStyleDialog() {
    //Open style dialog.
    documenteditor.showDialog('Style');
  }
  return (
    <div>
      <button onClick={ShowStyleDialog}>Dialog</button>
      <DocumentEditorComponent id="container" height={'330px'} ref={(scope) => { documenteditor = scope; }} isReadOnly={false} enableSelection={true} enableEditor={true} enableSfdtExport={true} enableStyleDialog={true} />
    </div>
  );
}
export default App;
ReactDOM.render(<App />, document.getElementById('sample'));

List dialog

This dialog allows creating a new list or modifying existing lists in the document.

To open this dialog, refer to the following example.

import * as ReactDOM from 'react-dom';
import * as React from 'react';
import {
  DocumentEditorComponent, SfdtExport, Selection, Editor, ListDialog
} from '@syncfusion/ej2-react-documenteditor';

//Inject require modules.
DocumentEditorComponent.Inject(SfdtExport, Selection, Editor, ListDialog);
export class Default extends React.Component<{}, {}> {
  public documenteditor: DocumentEditorComponent;
  showListDialog(): void {
    //Open list dialog.
    this.documenteditor.showDialog('List');
  }
  render() {
    return (
      <div>
        <button onClick={this.showListDialog.bind(this)}>Dialog</button>
        <DocumentEditorComponent id="container" height={'330px'} ref={(scope) => { this.documenteditor = scope; }} isReadOnly={false} enableSelection={true} enableEditor={true} enableSfdtExport={true} enableListDialog={true} />
      </div>
    );
  }
}
ReactDOM.render(<Default />, document.getElementById('sample'));

Borders and shading dialog

This dialog allows customizing the border style, border width, and background color of the table or selected cells.

To open this dialog, refer to the following example.

import * as ReactDOM from 'react-dom';
import * as React from 'react';
import {
  DocumentEditorComponent, SfdtExport, Selection, Editor, BordersAndShadingDialog
} from '@syncfusion/ej2-react-documenteditor';


DocumentEditorComponent.Inject(SfdtExport, Selection, Editor, BordersAndShadingDialog);
function App() {
  let documenteditor: DocumentEditorComponent;
  React.useEffect(() => {
  ComponentDidMount();
  }, []);
  function ComponentDidMount() {
    //Insert table
    documenteditor.editor.insertTable(2, 2);
  }

  function ShowBordersAndShadingDialog() {
    //Open borders and shading dialog.
    documenteditor.showDialog('BordersAndShading');
  }
  return (
    <div>
      <button onClick={ShowBordersAndShadingDialog}>Dialog</button>
      <DocumentEditorComponent id="container" height={'330px'} ref={(scope) => { documenteditor = scope; }} isReadOnly={false} enableSelection={true} enableEditor={true} enableSfdtExport={true} enableBordersAndShadingDialog={true} />
    </div>
  );
}
export default App;
ReactDOM.render(<App />, document.getElementById('sample'));

Table options dialog

This dialog allows customizing the default cell margins and spacing between each cells of the selected table.

To open this dialog, refer to the following example.

import * as ReactDOM from 'react-dom';
import * as React from 'react';
import {
  DocumentEditorComponent, SfdtExport, Selection, Editor, TableOptionsDialog
} from '@syncfusion/ej2-react-documenteditor';


DocumentEditorComponent.Inject(SfdtExport, Selection, Editor, TableOptionsDialog);
function App() {
  let documenteditor: DocumentEditorComponent;
  React.useEffect(() => {
  ComponentDidMount();
  }, []);
  function ComponentDidMount() {
    //Insert table.
    documenteditor.editor.insertTable(2, 2);
  }

  function ShowTableOptionsDialog() {
    //Open table options dialog.
    documenteditor.showDialog('TableOptions');
  }
  return (
    <div>
      <button onClick={ShowTableOptionsDialog}>Dialog</button>
      <DocumentEditorComponent id="container" height={'330px'} ref={(scope) => { documenteditor = scope; }} isReadOnly={false} enableSelection={true} enableEditor={true} enableSfdtExport={true} enableTableOptionsDialog={true} />
    </div>
  );
}
export default App
ReactDOM.render(<App />, document.getElementById('sample'));

Table properties dialog

This dialog allows customizing the table, row, and cell properties of the selected table.

To open this dialog, refer to the following example.

import * as ReactDOM from 'react-dom';
import * as React from 'react';
import {
  DocumentEditorComponent, SfdtExport, Selection, Editor, TableOptionsDialog, TablePropertiesDialog, BordersAndShadingDialog
} from '@syncfusion/ej2-react-documenteditor';


DocumentEditorComponent.Inject(SfdtExport, Selection, Editor, BordersAndShadingDialog, TableOptionsDialog, TablePropertiesDialog);
function App() {
  let documenteditor: DocumentEditorComponent;
  React.useEffect(() => {
  ComponentDidMount();
  }, []);
  function ComponentDidMount() {
    //Insert table.
    documenteditor.editor.insertTable(2, 2);
  }

  function ShowTablePropertiesDialog() {
    //Open table properties dialog.
    documenteditor.showDialog('TableProperties');
  }
  return (
    <div>
      <button onClick={ShowTablePropertiesDialog}>Dialog</button>
      <DocumentEditorComponent id="container" height={'330px'} ref={(scope) => { documenteditor = scope; }} isReadOnly={false} enableSelection={true} enableEditor={true} enableSfdtExport={true} enableBordersAndShadingDialog={true} enableTableOptionsDialog={true} enableTablePropertiesDialog={true} />
    </div>
  );

}
export default App;
ReactDOM.render(<App />, document.getElementById('sample'));

Page setup dialog

This dialog allows customizing margins, size, and layout options for pages of the section.

To open this dialog, refer to the following example.

import * as ReactDOM from 'react-dom';
import * as React from 'react';
import {
  DocumentEditorComponent, SfdtExport, Selection, Editor, PageSetupDialog
} from '@syncfusion/ej2-react-documenteditor';


DocumentEditorComponent.Inject(SfdtExport, Selection, Editor, PageSetupDialog);
function App() {
  let documenteditor: DocumentEditorComponent;
  function ShowPageSetupDialog() {
    //Open page setup dialog.
    documenteditor.showDialog('PageSetup');
  }
  return (
    <div>
      <button onClick={ShowPageSetupDialog}>Dialog</button>
      <DocumentEditorComponent id="container" height={'330px'} ref={(scope) => { documenteditor = scope; }} isReadOnly={false} enableSelection={true} enableEditor={true} enableSfdtExport={true} enablePageSetupDialog={true} />
    </div>
  );

}
export default App;
ReactDOM.render(<App />, document.getElementById('sample'));

See Also