Hi!
I'm having a problem when i want to load your editor which is placed at a control. This control gets loaded with an AJAX call (using prototype) and the following server code:
- var output = new StringWriter();
- var pageHolder = new PageHolder();
- UserControl _ctrl = null;
-
-
- _ctrl = pageHolder.LoadControl("xx/xx/MyControl.ascx",
-
- );
-
- pageHolder.Controls.Add(_ctrl);
- HttpContext.Current.Server.Execute(pageHolder, output, false);
- return new [] {output.ToString()};
And javascript consumes this string to render the control into a div.
The problem seems to be a missing function(CuteEditorInitialize) which i could find in the Loader.js in IE_Loader.
After referencing this file at the page (using a script-tag) it seems to work in IE but not in FireFox.
FireBug shows the following error:
p[OxOe934[46]] is undefined
Ok this seems to be because im using the IE_Loader...
How ever i think referencing this js file cant be the real solution of this problem.
Do you have any idea whats going on or how I can fix this problem?
Greetings and thank you,
empty
edit: the setup of the editor seems to be fine because it is working when i place it directly on a page.