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

[Solved] Prometheus Rad Editor Queries

2 Answers 141 Views
Editor
This is a migrated thread and some comments may be shown as answers.
reethish
Top achievements
Rank 1
reethish asked on 19 Feb 2008, 05:57 PM

 

Hi,

Can you please answer to the following queries related to Prometheus Rad Editor.

1. I'm using the Prometheus Rad Editor control in my page. I have set the skin property to "Monochrome". I'm trying to override the backcolor property but doesn't make any difference. For your reference the following is the code snippet which I'm using to achieve this.

 RadEditor NRadEditor = new RadEditor();
        NRadEditor.ID = CtrlName;
         NRadEditor.StripFormattingOptions = EditorStripFormattingOptions.NoneSupressCleanMessage;
        NRadEditor.Skin = "Monochrome";
         NRadEditor.BackColor = Color.White;

2.  In the Prometheus Rad Editor when I tired to set hyperlink for a selected text by using "Hyperlink Manager" icon from the toolbar I'm getting an error "Web.Config Registration Missing!".

Can you please reply me at the earliest to resolve the above errors?

Thanks in advance,
Reethish

2 Answers, 1 is accepted

Sort by
0
Accepted
Rumen Jekov
Top achievements
Rank 1
answered on 19 Feb 2008, 09:22 PM
Hi,

You can see how to set the editor background color in the following help article:
Setting Editor Background And Color.

In regards to the second problem: you can enable the RadEditor's Dialogs by using one of the following approaches:
  1. by manually adding the DialogHandler in your project's web.config file (in the httpHandlers section)
    <add verb="*" validate="false" path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler, Telerik.Web.UI"/>
  2. by clicking on the Smart Tag of the RadEditor control in Visual Studio. Note that the smart tag will appear only if you have the Telerik.Web.Design.dll file in your project's bin folder or in the GAC
More information is available here.

0
reethish
Top achievements
Rank 1
answered on 20 Feb 2008, 08:13 AM
Hello Rumen,

    Thanks for the reply. It resolved my issues.

Regards,
Reethish
Tags
Editor
Asked by
reethish
Top achievements
Rank 1
Answers by
Rumen Jekov
Top achievements
Rank 1
reethish
Top achievements
Rank 1
Share this question
or