Aliuk
Aliuk

Reputation: 1359

All the toolbar buttons of Froala

I would like to know the name of all the toolbar buttons of Froala (https://www.froala.com/wysiwyg-editor). I know the following ones:

"undo", "redo", "bold", "italic", "underline", "strikeThrough", "selectAll", "paragraphStyle", "subscript", "superscript", "paragraphFormat", "fontFamily", "fontSize", "align", "formatOL", "formatUL", "outdent", "indent", "quote", "color", "emoticons", "insertTable", "createLink", "insertImage", "insertVideo", "insertFile", "fullscreen", "html", "save"

I miss at least the Insert Horizontal Line button.

Upvotes: 7

Views: 6376

Answers (3)

Habib
Habib

Reputation: 165

new FroalaEditor('#froala-editor',  {
    toolbarButtons: ['fullscreen', 'bold', 'italic', 'underline', 'strikeThrough', 'subscript', 'superscript', '|', 'fontFamily', 'fontSize', 'color', 'inlineStyle', 'paragraphStyle', '|', 'paragraphFormat', 'align', 'formatOL', 'formatUL', 'outdent', 'indent', 'quote', '-', 'insertLink', 'insertImage', 'insertVideo', 'insertFile', 'insertTable', '|', 'emoticons', 'specialCharacters', 'insertHR', 'selectAll', 'clearFormatting', '|', 'print', 'help', 'html', '|', 'undo', 'redo','trackChanges','markdown']
});

Upvotes: 0

Yush0
Yush0

Reputation: 1656

There is an example with all possible feature of froala on their official page: https://www.froala.com/wysiwyg-editor/examples/full-featured

toolbarButtons: ['fullscreen', 'bold', 'italic', 'underline', 'strikeThrough', 'subscript', 'superscript', 'fontFamily', 'fontSize', 'color', 'emoticons', 'inlineStyle', 'paragraphStyle', 'paragraphFormat', 'align', 'formatOL', 'formatUL', 'outdent'

Upvotes: 6

Aliuk
Aliuk

Reputation: 1359

Finally I found the Insert Horizontal Line button. It is "insertHR".

Upvotes: 4

Related Questions