I'm dynamically populating an UpdatePanel within a ModalPopupExtender'd panel with a RadEditor.
When the control loads, all the images appear, but none of them are clickable except the three at the bottom which control which view the editor is displaying (Design, HTML, Preview). The rest of the images have alt text.
There is no textbox displayed at all unless RenderAsTextArea == true, but then it doesn't display any formatting. If I manually show the textareas generated whose style display is set to "none" via Chrome's Developer Tools, they show up but again, don't have any formatting.
Per the pinned thread from 2011, I've added
to my Default.aspx page, but nothing has changed.
Thanks for your help!
-Jordan
RadEditor tbQuestion =
new
RadEditor();
tbQuestion.ID =
"tbQuestion"
;
tbQuestion.Skin =
"Default"
;
cell.Controls.Add(tbQuestion);
When the control loads, all the images appear, but none of them are clickable except the three at the bottom which control which view the editor is displaying (Design, HTML, Preview). The rest of the images have alt text.
There is no textbox displayed at all unless RenderAsTextArea == true, but then it doesn't display any formatting. If I manually show the textareas generated whose style display is set to "none" via Chrome's Developer Tools, they show up but again, don't have any formatting.
Per the pinned thread from 2011, I've added
<
Telerik:RadCodeBlock
ID
=
"RadCodeBlock1"
runat
=
"server"
>
<
link
href='<%= Telerik.Web.SkinRegistrar.GetWebResourceUrl(this, typeof(RadEditor), "Telerik.Web.UI.Skins.Editor.css") %>'
rel="stylesheet" type="text/css" />
<
link
href='<%= Telerik.Web.SkinRegistrar.GetWebResourceUrl(this, typeof(RadEditor), "Telerik.Web.UI.Skins.Default.Editor.Default.css") %>'
rel="stylesheet" type="text/css" />
<
link
href='<%= Telerik.Web.SkinRegistrar.GetWebResourceUrl(this, typeof(RadWindow), "Telerik.Web.UI.Skins.Window.css") %>'
rel="stylesheet" type="text/css" />
<
link
href='<%= Telerik.Web.SkinRegistrar.GetWebResourceUrl(this, typeof(RadWindow), "Telerik.Web.UI.Skins.Default.Window.Default.css") %>'
rel="stylesheet" type="text/css" />
</
Telerik:RadCodeBlock
>
to my Default.aspx page, but nothing has changed.
Thanks for your help!
-Jordan