I'm getting the infamous "Web.config registration missing!" error. But it can't be the configuration because it runs in another place. I created a page that just had the RadEditor and got that working correctly with spell. Then I removed the design component and add it dynamically which is how its being done in the main body of the system (along with a lot of other controls). And it works fine in the standalone page (which is using the same master page as the one that fails). Yet still the main one pops up the registration missing error when you try to spell check. Any clues?
This running in VS 2008 on XP SP2
This is all the code I have to create the editor.
Telerik.Web.UI.RadEditor newTextBoxFull = new Telerik.Web.UI.RadEditor();
newTextBoxFull.ToolsFile = "~/config/tools.xml";
newTextBoxFull.ID = "txtBox_TestRadEditor";
newTextBoxFull.Content = "This is some text <b>which</b> will get displayed for editing;";
pnlEditor.Controls.Add(newTextBoxFull);
This running in VS 2008 on XP SP2
This is all the code I have to create the editor.
Telerik.Web.UI.RadEditor newTextBoxFull = new Telerik.Web.UI.RadEditor();
newTextBoxFull.ToolsFile = "~/config/tools.xml";
newTextBoxFull.ID = "txtBox_TestRadEditor";
newTextBoxFull.Content = "This is some text <b>which</b> will get displayed for editing;";
pnlEditor.Controls.Add(newTextBoxFull);