Hi, I have a SfRichTextEditor inside a modal.
I already use this component outside modals and they works perfectly.
I've added
refreshUI like suggested in this post
https://www.syncfusion.com/feedback/9692/rich-text-editor-does-not-initialise-correctly-within-modal-dialog
<SfRichTextEditor @bind-Value=@text
Height="200"
EnableTabKey=true
EnableAutoUrl=true
EnablePersistence=true
AutoSaveOnIdle=true
ShowCharCount=true
Readonly="@(!Enabled)"
Enabled="@Enabled"
CssClass="is-sf-rte">
</SfRichTextEditor>
I have a dropdown, and when the dropdownvalue change I fill text variable with Html, also with StateHasChanged the Rich TextBox blink and does not change the text inside.
Can you help me?