This is a migrated thread and some comments may be shown as answers.

Content area not available after postback

2 Answers 56 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Michael Dunbar
Top achievements
Rank 2
Michael Dunbar asked on 24 Oct 2008, 01:32 PM
Hi,

I have an editor inside a panel that I am setting to visible = false on page load and on button click am setting the panel to be visible. It works fine in IE but in Firefox the editor loses it's content input area and is therefore not selectable.

Any ideas?

Thanks,

Michael

2 Answers, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 24 Oct 2008, 02:06 PM
Hi Michael,

Could you please, register the external editor's skin files and see whether this will fix the problem? You should set the property EnableEmbeddedSkins to false, e.g.

<telerik:RadEditor ID="RadEditor1" EnableEmbeddedSkins="false" runat="server"></telerik:RadEditor>

After that copy the Skins installation folder from the RadControls for ASP.NET AJAX installation to the root of your web application and add the following link tags to the page with the editor:

    <link href="Skins/Window.css" rel="stylesheet" type="text/css" />
    <link href="Skins/Widgets.css" rel="stylesheet" type="text/css" />
    <link href="Skins/Editor.css" rel="stylesheet" type="text/css" />
    <link href="Skins/Default/Window.Default.css" rel="stylesheet" type="text/css" />
    <link href="Skins/Default/Widgets.Default.css" rel="stylesheet" type="text/css" />
    <link href="Skins/Default/Editor.Default.css" rel="stylesheet" type="text/css" />


Best regards,
Rumen
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Michael Dunbar
Top achievements
Rank 2
answered on 24 Oct 2008, 02:34 PM
Needs tidying up a bit as the default skin seems only half complete now, but it seems to have solved the initial problem.

So, to tidy up my application again I take it I just need the default editor skin and the files that these links point to? I'll gibe it a go.

Thanks for the help, I'll let you know if I have any further issues doing this.

Michael
Tags
Editor
Asked by
Michael Dunbar
Top achievements
Rank 2
Answers by
Rumen
Telerik team
Michael Dunbar
Top achievements
Rank 2
Share this question
or