I try to start editor in full screen mode. But I can't handle any start event like Created or onload.
<SfRichTextEditor @ref="@RteObj" @onload="@(e => OnCreated())" >
@code {
SfRichTextEditor RteObj = new SfRichTextEditor();
public void OnCreated()
{
RteObj.ShowFullScreen();
}
}
or
<SfRichTextEditor @ref="@RteObj" @onload="OnCreated" >
@code {
SfRichTextEditor RteObj = new SfRichTextEditor();
public void OnCreated()
{
RteObj.ShowFullScreen();
}
}