I followed the directions from this thread(http://www.telerik.com/community/forums/thread/b311D-bbkaaa.aspx) to copy the Default skin folder to my project and I registered the css in the ASPX page. On my page, I have a placeholder and a button inside an UpdatePanel. In the button's Click event, I have the following code, but I don't get a new editor when I click it.
RadEditor
re = new RadEditor();
re.ID =
"re" + editorCount.ToString();
re.Height =
Unit.Pixel(400);
re.Width =
Unit.Pixel(800);
re.EditModes =
EditModes.All;
re.Skin =
"Default";
re.EnableEmbeddedSkins =
false;
string[] images = new string[] { "~/AssocImages" };
re.ImageManager.ViewPaths = images;
re.ImageManager.UploadPaths = images;
re.ImageManager.DeletePaths = images;
re.ImageManager.MaxUploadFileSize = 50000000;
string[] docs = new string[] { "~/AssocDocuments" };
re.DocumentManager.ViewPaths = docs;
re.DocumentManager.UploadPaths = docs;
re.DocumentManager.DeletePaths = docs;
re.DocumentManager.MaxUploadFileSize = 50000000;
editorCount++;
phContent.Controls.Add(re);