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

[Solved] Spellcheck and Statusbar

3 Answers 167 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Markus
Top achievements
Rank 1
Markus asked on 07 Mar 2008, 11:25 AM
I just places a radEditor on form, when I start the page I get error message about missing spell checker files. I do not need spell checking, so how can I disable spellchecking?

I find a way in documentation to define the toolbar, but how can I remove the status bar (buttons to zoom, and switsh between text and HTML)?

3 Answers, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 07 Mar 2008, 04:13 PM
Hello Markus,

You can disable the spellchecker by predefining the editor's toolbar. You can do that by setting the ToolsFile property to point to your own ToolsFile.xml file which does not contain the AjaxSpellCheck tag or register the toolbar buttons manually in the RadEditor declaration, e.g.

<telerik:radeditor runat="server" ID="RadEditor1" Height="100px">
  
<Tools>
   
<telerik:EditorToolGroup >
       
<telerik:EditorTool Name="Cut" />
       
<telerik:EditorTool Name="Copy" />
       
<telerik:EditorTool Name="Paste" />
   
</telerik:EditorToolGroup>
  
</Tools>              
 
</telerik:radeditor

You can also control the displaying of the Design, Html and Preview buttons by using the EditModes enumeration property. In order to display only the Design and Preview modes set the EditModes property like this:

<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

All the best,
Rumen
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
Markus
Top achievements
Rank 1
answered on 10 Mar 2008, 08:22 AM
Hello Rumen,

thanks for help!

Another question: In design mode the radEdiotr has now some kind of a status bar where currently only a control resize-Image is visible. When I run the application this bar is not available but the control has no border on bottom, which looks no very nice. Any ideas?

Regards Markus
0
Rumen
Telerik team
answered on 10 Mar 2008, 08:26 AM
Hi Markus,

This could be a CSS issue, but I will need more information in order to reproduce the problem on my side.

Could you please open a support ticket and send a sample runnable project along with a screenshot of the problem? I will examine your project and CSS classes and see what is causing the problem. After that I will provide a solution soon.


Looking forward to hearing from you soon,
Rumen
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
Tags
Editor
Asked by
Markus
Top achievements
Rank 1
Answers by
Rumen
Telerik team
Markus
Top achievements
Rank 1
Share this question
or