Telerik blogs
We have just updated our RadEditor for MOSS with a new build. You can get it from the usual place. Visit http://www.telerik.com/products/sharepoint/radeditor.aspx for more information.

The new version (4.31) has a bunch of enhancements and bug fixes. The most important new feature in my opinion is the addition of a base editor class, which you can use in your own custom MOSS solutions. The new class (MOSSRadEditor) is available only in the full-featured version of the RadEditor for MOSS. It allows you to easily add an instance of RadEditor, which will have the MOSS specific features like the ability to use MOSS asset pickers, browse the MOSS libraries for documents, flash, etc.

Here is an example:

using Telerik.SharePoint;

...

    public class EditorTest : System.Web.UI.WebControls.WebParts.WebPart
    {
        private MOSSRadEditor myEditor;
        protected override void CreateChildControls()
        {
            base.CreateChildControls();
            myEditor = new MOSSRadEditor();
            myEditor.ID = "myEditor1";
            this.Controls.Add(myEditor);
        }
        protected override void Render(HtmlTextWriter writer)
        {
            EnsureChildControls();
            // TODO: add custom rendering code here.
        }
    }


rahnev
About the Author

Stefan Rahnev

Stefan Rahnev (@StDiR) is Product Manager for Telerik Kendo UI living in Sofia, Bulgaria. He has been working for the company since 2005, when he started out as a regular support officer. His next steps at Telerik took him through the positions of Technical Support Director, co-team leader in one of the ASP.NET AJAX teams and unit manager for UI for ASP.NET AJAX and Kendo UI. Stefan’s main interests are web development, agile processes planning and management, client services and psychology.

Comments

Comments are disabled in preview mode.