Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1805
webhtmleditor breaking
posted

i am getting error when i am trying to load webhtmleditor, code is breaking at the function below and the line is highlited. popup window says object required

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

function

 

 

Sys$_ScriptLoader$_loadScriptsInternal() {

 

 

var session = this

._currentSession;

 

 

if

(session.scriptsToLoad && session.scriptsToLoad.length > 0) {

 

 

var

nextScript = Array.dequeue(session.scriptsToLoad);

 

 

var scriptElement = this

._createScriptElement(nextScript);

 

 

 

if

(scriptElement.text && Sys.Browser.agent === Sys.Browser.Safari) {

scriptElement.innerHTML = scriptElement.text;

 

 

delete

scriptElement.text;

}

 

 

if (typeof(nextScript.src) === "string"

) {

 

 

this._currentTask = new Sys._ScriptLoaderTask(scriptElement, this

._scriptLoadedDelegate);

 

 

this

._currentTask.execute();

}

 

 

else

{

 

 

var headElements = document.getElementsByTagName('head'

);

 

 

if

(headElements.length === 0) {

 

 

throw new

Error.invalidOperation(Sys.Res.scriptLoadFailedNoHead);

}

 

 

else

{

headElements[0].appendChild(scriptElement);

}

 

 

Sys._ScriptLoader._clearScript(scriptElement);

 

 

this

._loadScriptsInternal();

}

}

 

 

else

{

 

 

this

._stopSession();

 

 

var

callback = session.allScriptsLoadedCallback;

 

 

if

(callback) {

callback(

 

this

);

}

 

 

this

._nextSession();

Parents
  • 28464
    posted

    Hello,

    This one is very tough to say, since it really depends on the way the control is used / loaded. It also depends on the browser used and many additional settings.

    Can you please use the specialized WebHtmlEditor forum for that (this is a general discussions forum) and send us some more information - I am sure it will provide additional clues.

    http://forums.infragistics.com/forums/113.aspx

Reply Children