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

How to hide the bottom section of the editor

11 Answers 447 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Jeffery
Top achievements
Rank 1
Jeffery asked on 11 Jan 2008, 04:26 PM
Hi,

I'd like to hide the bottom section of the editor, just like the form I am writing now (http://www.telerik.com/community/forums/new-forum-post/b314Z-e.aspx).  Is that possible?

Thanks,
Jeffery Sun

11 Answers, 1 is accepted

Sort by
0
Jeffery
Top achievements
Rank 1
answered on 11 Jan 2008, 04:33 PM
Nerve mind.  I figured it out.
0
HHH
Top achievements
Rank 1
answered on 20 Mar 2008, 12:21 AM
Hey hi,

How u do it , i wanna hide  the HTMl mode in RADEDITOR (Prometheus)
i dont find anything..

thanks
HHH.
0
Rumen
Telerik team
answered on 20 Mar 2008, 08:30 AM
Hi,

You can hide the Html mode of RadEditor "Prometheus" by setting EditModes enum property to "Design,Preview", e.g.

<telerik:RadEditor runat="server" ID="RadEditor1" EditModes="Design,Preview"></telerik:RadEditor>

C#:
RadEditor1.EditModes = EditModes.Design | EditModes.Preview;

VB.NET:
RadEditor1.EditModes = EditModes.Design Or EditModes.Preview

Let me know if you want to hide the Real Time Html View module.

Best regards,
Rumen
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
David Penny
Top achievements
Rank 2
answered on 20 Mar 2008, 10:18 AM
Hi,

I was just about to post on exactly the same topic.  However, I'm not sure your answer is exactly what I am looking for.  I would like to show just the editing area of RadEditor - my page has the edit area only shown as the top half of the editor, then a couple of lines and a large empty area at the bottom.  I'm not sure what this area is so do not know what to change to hide or reduce it.

I have tried setting the Edit Modes Property to Design and also Design,Preview but the Editor still displays with the extra space at the bottom.

David Penny
Pillar Software

0
Rumen
Telerik team
answered on 20 Mar 2008, 11:55 AM
Hi Pillar,

The mentioned a couple of lines and the large empty area at the bottom of the editor are the editor's modules. They are enabled on selection in the content area, for example when you click on a link or an image.

You can easily remove them in

RadEditor "Prometheus" and RadEditor Classic:

C#
RadEditor1.Modules.Clear();

VB.NET
RadEditor1.Modules.Clear()

If you use a ToolsFile.xml to populate the editor's tools then just delete the MODULES tags and their inner tags.

Greetings,
Rumen
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
David Penny
Top achievements
Rank 2
answered on 20 Mar 2008, 12:33 PM
Thanks Rumen,

that did the trick.
0
HHH
Top achievements
Rank 1
answered on 20 Mar 2008, 03:16 PM
Thanks Man..
thats the one i was looking for ..thanks

0
HHH
Top achievements
Rank 1
answered on 20 Mar 2008, 03:16 PM
Thanks Rumen
0
Rumen
Telerik team
answered on 20 Mar 2008, 03:36 PM
You are welcome, guys :)

I am glad to help.


Kind regards,
Rumen
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
Bram van den Broek
Top achievements
Rank 1
answered on 28 May 2008, 12:21 PM
Hello,

Is there a way to do a editor.modules.clear() in .skin files? Like you would clear collections in .config file?:

<modules>
    <Clear />
</modules>

With kind regards,

Bram van den Broek
0
Rumen
Telerik team
answered on 28 May 2008, 12:42 PM
Hi Bram,

You should declare a telerik:EditorModule inner tag with empty Name attribute. Here is a way to hide the editor's modules in a .skin file:

<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>

<telerik:radeditor runat="server" SkinID="Editor1">
    <Modules>
        <telerik:EditorModule Name="" />
    </Modules>
</telerik:radeditor>

Best regards,
Rumen
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
Tags
Editor
Asked by
Jeffery
Top achievements
Rank 1
Answers by
Jeffery
Top achievements
Rank 1
HHH
Top achievements
Rank 1
Rumen
Telerik team
David Penny
Top achievements
Rank 2
Bram van den Broek
Top achievements
Rank 1
Share this question
or