Toolbar Configuration

7 Jun 20175 minutes to read

The editor’s toolbar contains a collection of tools such as bold, italic and text alignment buttons that are used to format the content.
However, in most integrations, it’s desirable to change the toolbar configuration to suit needs. Fortunately, that’s quite easy to do too.

Property

Description

toolsList



The toolsList option allows you to choose which tools appear on the toolbar, as well as the order and grouping of those items

tools



The toolsList property is used to get the root group order and tools property is used to get the inner order of the corresponding groups displayed.

NOTE

By default, when you tab from the textbox to the RTE, the first tools in the Toolbar of RTE will get focus not in the text area.

But we can able to focus the RTE text area by setting the tab index attribute as -1 to avoid the focus on RTE toolbar when we tab from textbox to RTE - <p>Demo</p>

Toolbar Items

The following table lists the available buttons and dropdowns on the toolbar:

Name

Summary

Initialization

IsDefault?

Font

Applies font type, size, and color to the content.

tools: { 
font: ["fontName", "fontSize", "fontColor", "backgroundColor"]
}

No

Font style

Applies bold, italic, underline, and strikethrough formatting to the content.

tools: {
style: ["bold", "italic", "underline", "strikethrough"]
}

Yes

Alignment

Align the content with left, center, and right margin.

tools: {
alignment: ["justifyLeft", "justifyCenter", "justifyRight", "justifyFull"]
}

Yes

List

Create a new list item (bulleted/numbered).

tools: {
lists: ["unorderedList", "orderedList"]
}

Yes

Indents

Allows to increase/decrease the indent level of the content.

tools: {
indenting: ["outdent", "indent"]
}

Yes

Undo/Redo Action

Allows to undo/redo the actions

tools: {
doAction: ["undo", "redo"]
}

Yes

Hyperlink

Creates a hyperlink to a text or image to a specific location in the content.

tools: {
links: ["createLink","removeLink"]
}

Yes

Images

Inserts an image from an online source or local computer.

tools: {
images: ["image"]
}

Yes

Media

Allows to embed a video into the document.

tools: {
media: ["video"]
}

Yes

Table

Allows to add or modify Tables.

tools: {
tables: ["createTable", "addRowAbove", "addRowBelow", "addColumnLeft", "addColumnRight", "deleteRow", "deleteColumn", "deleteTable"]
}

Yes

Casing

Change the case of selected text in the content

tools: {
casing: ["upperCase", "lowerCase"]
}

No

Scripts

Makes the selected text as superscript (higher) or subscript (lower).

tools: {
effects: ["superscript", "subscript"]
}

No

Format

Clears the formatting options like bold, italic, underline and more.

tools: {
formatStyle: ["format"]
}

Yes

Clipboard Actions

Controls the clipboard actions by applying specific action on the selected content.

tools: {
clipboard: ["cut", "copy", "paste"]
}

No

Edit

Allows to make find and replace functionalities with the content.

tools: {
edit: ["findAndReplace"]
}

No

view

Allows to change the editor view mode.

tools: { 
view: ["fullScreen","zoomIn","zoomOut"]
}

No

print

Allows to print the editor content.

tools: { 
print: ["print"]
}

No

Rearrange Group

The toolbar contains groups, which are similar or related functionalities of toolbar items for efficient access. By default, the groups are arranged using the following order

  • HTML
  • toolsList:["formatStyle","font","style","effects","alignment","lists","indenting","clipboard","doAction", 
    "clear","links","images","media","tables","casing","customTools","view"]

    The group can be rearranged on customization using the toolsList property.

  • HTML
  • <textarea ej-rte id="rte" [(toolsList)]="toolslist" [(tools)]="tools"></textarea>
  • HTML
  • import {Component} from '@angular/core';
    
    @Component({
      selector: 'sd-home',
      templateUrl: 'app/components/rte/rte.component.html'
    })
    export class RTEComponent {
        toolslist: any;
        tools: Object;
        constructor() {
            this.toolslist = ["links", "lists", "doAction", "style", "images"];
            this.tools = { style: ["bold", "italic"], lists: ["unorderedList", "orderedList"], doAction: ["undo", "redo"], links: ["createLink", "removeLink"], images: ["image"] };
        }
    }

    NOTE

    If you are not specify any group in toolsList property, the editor will create the toolbar with default group.

    Undo and Redo

    Undo and Redo buttons allow you to editing the text by disregard/cancel the recently made changes and restore it to previous state. It is a useful tool to restore the performed action which got changed by mistake. Up to 50 actions can be undo/redo in the editor by default.

    To undo and redo operations, do one of the following:

    • Press the undo/redo button on the toolbar
    • Press the Ctrl + Z/Ctrl + Y combination on the keyboard
  • HTML
  • <textarea ej-rte id="rte" [(toolsList)]="toolslist" [(tools)]="tools" [value]="val"></textarea>
  • HTML
  • import {Component} from '@angular/core';
    
    @Component({
      selector: 'sd-home',
      templateUrl: 'app/components/rte/rte.component.html'
    })
    export class RTEComponent {
        val: string;
        toolslist: any;
        tools: Object;
        constructor() {
            this.val = "The RichTextEditor (RTE) control enables you to edit the contents with insert table and images," + " it also provides a toolbar that helps to apply rich text formats to the content entered in the TextArea.";
            this.toolslist = ["doAction"];
            this.tools = { doAction: ["undo", "redo"] };
        }
    }

    Clipboard Operations

    The editor provides support for the clipboard operations (cut, copy, and paste) in all text and images using the toolbar buttons and the keyboard shortcuts. Toolbar includes buttons through which the clipboard operations, such as Cut, Copy, and Paste can be accessed.

    You can use the keyboard shortcuts to perform the clipboard operations.

    • Cut - CTRL+X
    • Copy - CTRL+C
    • Paste - CTRL+V

    NOTE

    Some browsers block the clipboard access from JavaScript. If you want to use the Cut, Copy, and Paste buttons on the toolbar, you need to allow JavaScript to use the clipboard. If you don’t want to do this configuration, use CTRL+C, CTRL+X, and CTRL+V keyboard commands.

  • HTML
  • <textarea ej-rte id="rte" [(toolsList)]="toolslist" [(tools)]="tools" [value]="val"></textarea>
  • HTML
  • import {Component} from '@angular/core';
    
    @Component({
      selector: 'sd-home',
      templateUrl: 'app/components/rte/rte.component.html'
    })
    export class RTEComponent {
        val: string;
        toolslist: any;
        tools: Object;
        constructor() {
            this.val = "The RichTextEditor (RTE) control enables you to edit the contents with insert table and images," + " it also provides a toolbar that helps to apply rich text formats to the content entered in the TextArea.";
            this.toolslist = ["doAction"];
            this.tools = { clipboard: ["cut", "copy", "paste"] };
        }
    }