When I call via server side RadEditor which is inside a standard update I get an error in Firefox 3.0 as below. Does it need to be inside a RadUpdatePanel?
Reditor.Controls.Add(r);
[Exception... "Component returned failure code: 0x80004002 (NS_NOINTERFACE) [nsISupports.QueryInterface]" nsresult: "0x80004002 (NS_NOINTERFACE)" location: "JS frame :: chrome://snipit/content/snipitOverlay.js :: anonymous :: line 150" data: no]
Reditor.Controls.Add(r);
[Exception... "Component returned failure code: 0x80004002 (NS_NOINTERFACE) [nsISupports.QueryInterface]" nsresult: "0x80004002 (NS_NOINTERFACE)" location: "JS frame :: chrome://snipit/content/snipitOverlay.js :: anonymous :: line 150" data: no]
ScriptResource.axd?d=hDnMhFnOCnI_y_UxlW2QK7RHV8eSETFUacNH9LIZ286E7nzGegdvkmu3qRDEZTKe0&t=77010017()()ScriptRe...=77010017 (line 941)
This the server side code:
protected void btEditor_Click(object sender, EventArgs e)
{
Telerik.Web.UI.RadEditor r = new Telerik.Web.UI.RadEditor();
r.Width = 740;
r.Height = 600;
r.ID = "RadEditor1";
Reditor.Controls.Add(r);
}