Dear all,
I download the Asp.Net Control and it works great, but when I load the page for a few moments appair the text area with the html code inside before the CkEditor.
Is there a way to hide this textarea and show only the ck?
See the picture in attach.
Thanks a lot
I download the Asp.Net Control and it works great, but when I load the page for a few moments appair the text area with the html code inside before the CkEditor.
Is there a way to hide this textarea and show only the ck?
See the picture in attach.
Thanks a lot

Re: Asp.Net - Initial TextBox Area before CkEditor?
Re: Asp.Net - Initial TextBox Area before CkEditor?
Your suggestion is right!
The CKControl of Asp.net is a textbox extension. I add this line at the costructor and it works great.
CkEditorControl Row 1018
public CKEditorControl() { base.TextMode = TextBoxMode.MultiLine; this.Style.Add(HtmlTextWriterStyle.Visibility, "hidden"); this.config = new CKEditorConfig(this.BasePath.StartsWith("~") ? this.ResolveUrl(this.BasePath) : this.BasePath); }