I'm running into a problem with the Q1 '08 build of the Editor specifically with the Image Manager.
The problem occurs when the Rad Editor is inside of an update panel and is initially not visible. Then if it is made visible via a postback and then the image manager is clicked, the Image Manager doesn't get rendered properly. Only bits and pieces of it show up and it is unusable. If I take it out of the update panel all works fine. Here is the basic test code:
Front-End:
<body>
<form id="form1" runat="server">
<asp:ScriptManager ID="scriptManager" EnablePartialRendering="true" runat="server" />
<asp:UpdatePanel runat="server">
<ContentTemplate>
<asp:Button runat="server" OnClick="buttonclick" Text="Make Editor Visible" />
<Telerik:RadEditor runat="server" ID="radEditor" Height="400px" EditModes="Design"
AutoResizeHeight="true" Skin="Web20">
</Telerik:RadEditor>
</ContentTemplate>
</asp:UpdatePanel>
</form>
</body>
Back End:
protected void Page_Load(object sender, EventArgs e)
{
if(!IsPostBack)
{
radEditor.Visible = false;
}
}
protected void buttonclick(object sender, EventArgs e)
{
radEditor.Visible = true;
}
What's the workaround for this?
-Erin