Hello,
Using build 2.723.35
I am unable to created editor in codebehind, I am using in may Page object:
RadEditor ed ;
protected void Page_Load(object sender, EventArgs e)
{
if ( !IsPostBack )
ed.Content="x";
}
protected override void OnInit(EventArgs e)
{
ed = new RadEditor();
ed.ID = "RadEditorTextBox_1";
Controls.Add(ed);
base.OnInit(e);
}
And I get an editor displayed but its window is bad formed and it doesn't accept input.
Adding one in the same page a declarative syntaxe like
<telerik:RadEditor ID="RadEditor1" Runat="server">
<Content></Content>
</telerik:RadEditor>
works ??????
Any Idea ?
CS
Using build 2.723.35
I am unable to created editor in codebehind, I am using in may Page object:
RadEditor ed ;
protected void Page_Load(object sender, EventArgs e)
{
if ( !IsPostBack )
ed.Content="x";
}
protected override void OnInit(EventArgs e)
{
ed = new RadEditor();
ed.ID = "RadEditorTextBox_1";
Controls.Add(ed);
base.OnInit(e);
}
And I get an editor displayed but its window is bad formed and it doesn't accept input.
Adding one in the same page a declarative syntaxe like
<telerik:RadEditor ID="RadEditor1" Runat="server">
<Content></Content>
</telerik:RadEditor>
works ??????
Any Idea ?
CS