Users can see textarea with html tags while Editor is loading.
<div class="form-group"> <label asp-for="Description" class="col-md-2 control-label"></label> <div class="col-md-6"> @(Html.Kendo().EditorFor(model => model.Description) .HtmlAttributes(new { style = "width: 100%;height:440px;" }) .Tools(tools => tools .Clear() .Bold().Italic().Underline().Strikethrough() .InsertUnorderedList().InsertOrderedList() .Formatting())) <span asp-validation-for="Description" class="text-danger"></span> </div></div>
Is there a way to hide the textarea until Editor is loaded?
Thank you
