Customization of Blazor Rich Text Editor Dialog

20 Dec 20231 minute to read

The Blazor Rich Text Editor allows for improved customization of the dialogs by configuring the RichTextEditorDialogSettings property. This addition enables users to control the behavior and appearance of the underlying dialogs within the RichTextEditor. the following list of options has been provided.

Options Description
IsModel Accepts a boolean value and determines whether the dialog operates in modal or modeless mode.
Target Specifies the target element for the dialog component.
ZIndex Allows adjustment of the Z-index value for the dialog component.
@using Syncfusion.Blazor.RichTextEditor

<SfRichTextEditor>
    <RichTextEditorDialogSettings IsModal="true" Target="body" ZIndex="1000" > </RichTextEditorDialogSettings>
</SfRichTextEditor>

Blazor RichTextEditor DialogSettings

See also