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

How to use RadEdior in Web Part , MOSS 2007 and WSS 3.0?

1 Answer 68 Views
WebParts for SharePoint
This is a migrated thread and some comments may be shown as answers.
Savan
Top achievements
Rank 1
Savan asked on 24 Dec 2008, 11:22 AM
Hi,
I am using "RadEditor.Net2" with version v2.0.50727.

How to add Rad Editor in Share Point web part (MOSS 2007 & WSS 3.0)

I have written a simple code like :

   [Guid("1818f2ae-658a-44ca-9907-96e6dbcdc518")]
    public class ImageEdiorWebPart : System.Web.UI.WebControls.WebParts.WebPart
    {
        RadEditor editor;  
        public ImageEdiorWebPart()
        {

        }

 

        protected override void Render(HtmlTextWriter writer)
        {
            base.Render(writer);
        }

        protected override void CreateChildControls()
        {
            base.CreateChildControls();

            editor = new RadEditor();
            editor.ID = "RadEditor1";

            
            this.Controls.Add(editor);

        }
    }

But throws a error : File not found.

Thanks
Savan

1 Answer, 1 is accepted

Sort by
0
Stanimir
Telerik team
answered on 29 Dec 2008, 12:20 PM
Hi Savan,

You can find information on how to Use the RadEditor WebPart in our online help: http://www.telerik.com/help/aspnet-ajax/using-radeditor-webpart.html. I think that you will find the information there helpful.

Thank you.

Best wishes,
Stanimir
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Tags
WebParts for SharePoint
Asked by
Savan
Top achievements
Rank 1
Answers by
Stanimir
Telerik team
Share this question
or