You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
2.1 KiB
55 lines
2.1 KiB
@{
|
|
ViewBag.Title = "RichTextEditor";
|
|
Layout = "~/Views/Shared/_Layout.cshtml";
|
|
}
|
|
<h2>RichTextEditor Features:</h2>
|
|
<br/>
|
|
<li> RichTextEditor Samples - Default</li>
|
|
<li> Theme - Bootstrap-Theme</li>
|
|
<br/>
|
|
<div id = "ControlRegion">
|
|
<ejs-richtexteditor id="defaultRTE" showCharCount="true" maxLength="2000">
|
|
<e-content-template>
|
|
<div>
|
|
<p>The rich text editor is WYSIWYG ('what you see is what you get') editor useful to create and edit content, and return the valid <a href='rte / rich - text - editor.html'>HTML markup</a> or <a href='rte / markdown - editor.html'>markdown</a> of the content</p>
|
|
<p><b> Toolbar </b></p>
|
|
<ol>
|
|
<li>
|
|
<p> Toolbar contains commands to align the text, insert link, insert image, insert list, undo / redo operations, HTML view, etc </p>
|
|
</li>
|
|
<li>
|
|
<p> Toolbar is fully customizable </p>
|
|
</li>
|
|
</ol>
|
|
<p><b> Links </b></p>
|
|
<ol>
|
|
<li>
|
|
<p> You can insert a hyperlink with its corresponding dialog</p>
|
|
</li>
|
|
<li>
|
|
<p> Attach a hyperlink to the displayed text. </p>
|
|
</li>
|
|
<li>
|
|
<p> Customize the quick toolbar based on the hyperlink </p>
|
|
</li>
|
|
</ol>
|
|
<p><b> Image.</b></p>
|
|
<ol>
|
|
<li>
|
|
<p> Allows you to insert images from an online source as well as the local computer</p>
|
|
</li>
|
|
<li>
|
|
<p> You can upload an image</p>
|
|
</li>
|
|
<li>
|
|
<p> Provides an option to customize quick toolbar for an image </p>
|
|
</li>
|
|
</ol>
|
|
<img alt='Logo' src='images/RichTextEditor/RTEImage-Feather.png' style='width: 300px' />
|
|
</div>
|
|
</e-content-template>
|
|
<e-richtexteditor-toolbarsettings items="@ViewBag.tools">
|
|
</e-richtexteditor-toolbarsettings>
|
|
</ejs-richtexteditor>
|
|
</div>
|