@using Syncfusion.Blazor.RichTextEditor
<SfRichTextEditor @ref="RteObj" SaveInterval=1>
<RichTextEditorEvents ValueChange="@onChanged"></RichTextEditorEvents>
<p>Rich Text Editor allows to insert images from online source as well as local computer where you want to insert the image in your content.</p>
<p><b>Get started Quick Toolbar to click on the image</b></p>
<p>It is possible to add custom style on the selected image inside the Rich Text Editor through quick toolbar.</p>
</SfRichTextEditor>
@code {
SfRichTextEditor RteObj;
public void onChanged()
{
System.Diagnostics.Debug.WriteLine(this.RteObj.Value);
}
}
|
@using Syncfusion.Blazor.RichTextEditor
<SfRichTextEditor @ref="RteObj" SaveInterval=1>
<RichTextEditorEvents ValueChange="@onChanged"></RichTextEditorEvents>
<p>Rich Text Editor allows to insert images from online source as well as local computer where you want to insert the image in your content.</p>
<p><b>Get started Quick Toolbar to click on the image</b></p>
<p>It is possible to add custom style on the selected image inside the Rich Text Editor through quick toolbar.</p>
</SfRichTextEditor>
@code {
SfRichTextEditor RteObj;
public void onChanged()
{
System.Diagnostics.Debug.WriteLine(this.RteObj.Value);
}
}
|