Greetings from Syncfusion support.
We have validated the reported issue and suspect you’re rendered the Rich Text Editor inside our SfDialog component. The width is properly not calculated due to animation delay, so the editor misaligned over the toolbar and not able to access RTE.
We suggest you call the SfRichTextEditor - RefreshUI() public method in SfDialog - Opened event callback to resolve the reported issue. Please find code example given below,
<SfDialog Width="450px">
<DialogTemplates>
<Header> RTE </Header>
<Content>
<SfRichTextEditor @ref="RteRef"></SfRichTextEditor>
</Content>
</DialogTemplates>
<DialogEvents Opened="@DialogOpened" />
</SfDialog>
@code{
SfRichTextEditor RteRef;
private async Task DialogOpened()
{
await this.RteRef.RefreshUI();
}
}
|
If you still facing any issue, kindly revert to us.
Regards,
Pandiyaraj