To use web fonts in RTE, it is not needed for the web fonts to be present in local machine. To add the web fonts to RTE, we need to refer the web font links and add the font names in the fontFamily
property.
<template>
<div>
<div class="control-section">
<div class="sample-container">
<div class="default-section">
<ejs-richtexteditor ref="rteObj" :fontFamily="fontFamily" :toolbarSettings="toolbarSettings" ><p>The rich text editor component is WYSIWYG ("what you see is what you get") editor that provides the best user experience to create and update the content. Users can format their content using standard toolbar commands.</p>
<p><b>Key features:</b></p>
<ul>
<li><p>Provides <IFRAME> and <DIV> modes</p></li>
<li><p>Capable of handling markdown editing.</p></li>
<li><p>Contains a modular library to load the necessary functionality on demand.</p></li>
<li><p>Provides a fully customizable toolbar.</p></li>
</ul></ejs-richtexteditor>
</div>
</div>
</div>
</div>
</template>
<script>
import Vue from "vue";
import { RichTextEditorPlugin, Toolbar, Link, Count, Image, HtmlEditor, QuickToolbar } from "@syncfusion/ej2-vue-richtexteditor";
Vue.use(RichTextEditorPlugin);
export default {
data: function() {
return {
fontFamily: {
items:[
{text: "Segoe UI", value: "Segoe UI", class: "e-segoe-ui", command: "Font", subCommand: "FontName"},
{text: "Roboto", value: "Roboto", command: "Font", subCommand: "FontName"}, // here font is added
{text: "Great vibes", value: "Great Vibes,cursive", command: "Font", subCommand: "FontName"}, // here font is added
{text: "Noto Sans", value: "Noto Sans", command: "Font", subCommand: "FontName"},
{text: "Impact", value: "Impact,Charcoal,sans-serif", class: "e-impact", command: "Font", subCommand: "FontName"},
{text: "Tahoma", value: "Tahoma,Geneva,sans-serif", class: "e-tahoma", command: "Font", subCommand: "FontName"},
]
},
toolbarSettings: {
items: ['Bold', 'Italic', 'Underline', 'StrikeThrough','|',
'FontName', 'FontSize', 'FontColor', 'BackgroundColor',
'LowerCase', 'UpperCase', '|',
'Formats', 'Alignments', 'OrderedList', 'UnorderedList',
'Outdent', 'Indent', '|',
'CreateLink', 'Image', '|', 'ClearFormat', 'Print',
'SourceCode', 'FullScreen', '|', 'Undo', 'Redo']
},
}
},
provide:{
richtexteditor: [Toolbar, Link, Count, Image, HtmlEditor, QuickToolbar]
}
}
</script>
<style>
@import "../../node_modules/@syncfusion/ej2-vue-richtexteditor/styles/material.css";
</style>
The below font style links are referred in the page.
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Roboto">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Great+Vibes">
In the above sample, you can see that we have added two Google web fonts (
Roboto
andGreat vibes
) toRTE
.
By using default
property, you can change the default font-family of the RTE. To change the font-family of the RTE content while loading, we need to give the font-family in the style section with the help of cssClass
property.
<template>
<div>
<div class="control-section">
<div class="sample-container">
<div class="default-section">
<ejs-richtexteditor ref="rteObj" :fontFamily="fontFamily" :cssClass="cssClass" :toolbarSettings="toolbarSettings" ><p>The rich text editor component is WYSIWYG ("what you see is what you get") editor that provides the best user experience to create and update the content. Users can format their content using standard toolbar commands.</p>
<p><b>Key features:</b></p>
<ul>
<li><p>Provides <IFRAME> and <DIV> modes</p></li>
<li><p>Capable of handling markdown editing.</p></li>
<li><p>Contains a modular library to load the necessary functionality on demand.</p></li>
<li><p>Provides a fully customizable toolbar.</p></li>
</ul></ejs-richtexteditor>
</div>
</div>
</div>
<style>
.customClass .e-rte-content .e-content {
/* to get the desired font on intially*/
font-family: "Noto Sans";
}
</style>
</div>
</template>
<script>
import Vue from "vue";
import { RichTextEditorPlugin, Toolbar, Link, Count, Image, HtmlEditor, QuickToolbar } from "@syncfusion/ej2-vue-richtexteditor";
Vue.use(RichTextEditorPlugin);
export default {
data: function() {
return {
fontFamily: {
default:"Noto Sans", // to define default font-family
items:[
{text: "Segoe UI", value: "Segoe UI", class: "e-segoe-ui", command: "Font", subCommand: "FontName"},
{text: "Noto Sans", value: "Noto Sans", command: "Font", subCommand: "FontName"},
{text: "Impact", value: "Impact,Charcoal,sans-serif", class: "e-impact", command: "Font", subCommand: "FontName"},
{text: "Tahoma", value: "Tahoma,Geneva,sans-serif", class: "e-tahoma", command: "Font", subCommand: "FontName"},
]
},
toolbarSettings: {
items: ['Bold', 'Italic', 'Underline', 'StrikeThrough','|',
'FontName', 'FontSize', 'FontColor', 'BackgroundColor',
'LowerCase', 'UpperCase', '|',
'Formats', 'Alignments', 'OrderedList', 'UnorderedList',
'Outdent', 'Indent', '|',
'CreateLink', 'Image', '|', 'ClearFormat', 'Print',
'SourceCode', 'FullScreen', '|', 'Undo', 'Redo']
},
cssClass: "customClass",
}
},
provide:{
richtexteditor: [Toolbar, Link, Count, Image, HtmlEditor, QuickToolbar]
}
}
</script>
<style>
@import "../../node_modules/@syncfusion/ej2-vue-richtexteditor/styles/material.css";
</style>
It can be achieved by using formatter
property. We need to create customformatterModel
to configure the keyConfig
using IHtmlFormatterModel
class and assign the same to the formatter property. Here, ctrl+q
is configured to open the Insert Hyperlink
dialog.
{% tab template=‘rich-text-editor/toolbar’, isDefaultActive=true %}
<template>
<ejs-richtexteditor ref="defaultRTE" :placeholder="placeholder" :formatter="formatter" >
<p>The rich text editor component is WYSIWYG ("what you see is what you get") editor that provides the best user experience to create and update the content. Users can format their content using standard toolbar commands.</p>
<p><b>Key features:</b></p>
<ul>
<li>
<p>Provides <IFRAME> and <DIV> modes</p>
</li>
<li>
<p>Capable of handling markdown editing.</p>
</li>
<li>
<p>Contains a modular library to load the necessary functionality on demand.</p>
</li>
<li>
<p>Provides a fully customizable toolbar.</p>
</li>
</ul>
</ejs-richtexteditor>
</template>
<script>
import Vue from 'vue';
import { RichTextEditorPlugin, Toolbar, Link, Image, HtmlEditor, QuickToolbar, IHtmlFormatterModel, HTMLFormatter } from '@syncfusion/ej2-vue-richtexteditor';
Vue.use(RichTextEditorPlugin);
export default {
data() {
var customHTMLModel = {
keyConfig: {
'insert-link': 'ctrl+q', // confite the desired key
}
}
return {
placeholder: "Type Something",
formatter: new HTMLFormatter(customHTMLModel), // to configure custom key
}
},
provide: {
richtexteditor: [Toolbar, Link, Image, HtmlEditor, QuickToolbar]
}
}
</script>
<style>
@import '../node_modules/@syncfusion/ej2/material.css';
</style>
{% endtab %}
We need to import
IHtmlFormatterModel
andHTMLFormatter
to configure the shortcut key.
To achieve this, we need to bind the keydown
event to the RTE content and capture the ctrl + s
key press using its keyCode.
In the keydown
event handler, the updateValue
method is called to update the value
property and then we can save the content in the required database using the same.
<template>
<div>
<div class="control-section">
<div class="sample-container">
<div class="default-section">
<ejs-richtexteditor ref="rteObj" :toolbarSettings="toolbarSettings" :created="onCreate"><p>The rich text editor component is WYSIWYG ("what you see is what you get") editor that provides the best user experience to create and update the content. Users can format their content using standard toolbar commands.</p>
<p><b>Key features:</b></p>
<ul>
<li><p>Provides <IFRAME> and <DIV> modes</p></li>
<li><p>Capable of handling markdown editing.</p></li>
<li><p>Contains a modular library to load the necessary functionality on demand.</p></li>
<li><p>Provides a fully customizable toolbar.</p></li>
</ul></ejs-richtexteditor>
</div>
</div>
</div>
</div>
</template>
<script>
import Vue from "vue";
import { RichTextEditorPlugin, Toolbar, HtmlEditor } from "@syncfusion/ej2-vue-richtexteditor";
Vue.use(RichTextEditorPlugin);
export default {
data: function() {
return {
toolbarSettings: {
type: 'MultiRow',
items: ['Bold', 'Italic', 'Underline', 'StrikeThrough',
'FontName', 'FontSize', 'FontColor', 'BackgroundColor',
'LowerCase', 'UpperCase', '|',
'Formats', 'Alignments', 'OrderedList', 'UnorderedList',
'Outdent', 'Indent', '|',
'CreateLink', 'Image', '|', 'ClearFormat', 'Print',
'SourceCode', 'FullScreen', '|', 'Undo', 'Redo'
]
},
}
},
methods: {
onCreate: function(){
var instance = this.$refs.rteObj.$el.ej2_instances[0];
instance.contentModule.getDocument().addEventListener("keydown",function(e) {
if(e.key === 's' && e.ctrlKey===true){
e.preventDefault(); // to prevent default ctrl+s action
instance.updateValue(); // to update the value after editing
let value = instance.value; // you can get the RTE content to save in the desired database
}
});
}
},
provide:{
richtexteditor:[Toolbar, HtmlEditor]
}
}
</script>
<style>
@import "../../node_modules/@syncfusion/ej2-vue-richtexteditor/styles/material.css";
</style>
By using rte-placeholder
class, you can customize the placeholder style.
{% tab template=‘rich-text-editor/getting-started’, isDefaultActive=true %}
<template>
<div>
<ejs-richtexteditor ref="defaultRTE" :placeholder="placeholder" >
</ejs-richtexteditor>
</div>
<style>
.e-richtexteditor .rte-placeholder {
font-family: monospace;
color: deeppink;
}
</style>
</template>
<script>
import Vue from 'vue';
import { RichTextEditorPlugin, Toolbar, Link, Image, HtmlEditor, QuickToolbar } from '@syncfusion/ej2-vue-richtexteditor';
Vue.use(RichTextEditorPlugin);
export default {
data() {
return {
placeholder: "Type Something",
}
},
provide: {
richtexteditor: [Toolbar, Link, Image, HtmlEditor, QuickToolbar]
}
}
</script>
<style>
@import '../node_modules/@syncfusion/ej2/material.css';
</style>
{% endtab %}
This can be achieved by using setRange
method in the RTE using NodeSelection
instance. In this below sample, we have passed the text node (specific location in RTE content) in setStart
method and passed the range in setRange
method of RTE.
{% tab template=‘rich-text-editor/toolbar’, isDefaultActive=true %}
<template>
<div>
<ejs-richtexteditor ref="defaultRTE" :placeholder="placeholder" >
<p>The rich text editor component is WYSIWYG ("what you see is what you get") editor that provides the best user experience to create and update the content. Users can format their content using standard toolbar commands.</p>
<p id="key"><b>Key features:</b></p>
<ul>
<li>
<p>Provides <IFRAME> and <DIV> modes</p>
</li>
<li>
<p>Capable of handling markdown editing.</p>
</li>
<li>
<p>Contains a modular library to load the necessary functionality on demand.</p>
</li>
<li>
<p>Provides a fully customizable toolbar.</p>
</li>
</ul>
</ejs-richtexteditor>
<button v-on:click="onClick" class="e-btn">Set Cursor Position</button>
</div>
</template>
<script>
import Vue from 'vue';
import { RichTextEditorPlugin, NodeSelection, Toolbar, Link, Image, HtmlEditor, QuickToolbar } from '@syncfusion/ej2-vue-richtexteditor';
Vue.use(RichTextEditorPlugin);
export default {
data() {
return {
placeholder: "Type Something",
}
},
methods: {
onClick: function(event){
var instance = this.$refs.defaultRTE.$el.ej2_instances[0];
let element = instance.contentModule.getDocument().getElementById("key");
let selectioncursor = new NodeSelection();
let range = document.createRange();
range.setStart(element, 1); // to set the range
selectioncursor.setRange(document, range); // to set the cursor
}
},
provide: {
richtexteditor: [Toolbar, Link, Image, HtmlEditor, QuickToolbar]
}
}
</script>
<style>
@import '../node_modules/@syncfusion/ej2/material.css';
</style>
{% endtab %}