Is it possible to use an editor in a window? The following seems to hang the application when opening the window:
@page "/test"
<
div
class
=
"container-fluid"
>
<
TelerikWindow
Left
=
"3rem"
Top
=
"2rem"
Visible
=
"@Visible"
>
<
WindowTitle
>Test</
WindowTitle
>
<
WindowActions
><
WindowAction
Name
=
"Close"
@onclick="@(() => Visible = false)" /></
WindowActions
>
<
WindowContent
>
<
TelerikEditor
@
bind-Value
=
"Body"
Width
=
"650px"
Height
=
"400px"
></
TelerikEditor
>
</
WindowContent
>
</
TelerikWindow
>
<
TelerikButton
ButtonType
=
"@ButtonType.Button"
OnClick="@(() => Visible = true)">Editor</
TelerikButton
>
</
div
>
@code{
private string Body { get; set; }
private bool Visible { get; set; }
}