hi, i've got the same error on the latest version 2.6 when the FCK didnt get to init itself (no black border an empty see attachment image) i get that error so i wrote a simple function that goes on the forms onsubmit and i wont let the user save the data if there's null error
var d
if (FCKeditorAPI)
{
for (fckeditorName in FCKeditorAPI.__Instances)
{
// force update data!
d = FCKeditorAPI.GetInstance(fckeditorName).GetXHTML();
//alert (d)
if (d== "null" || d==null || d == "<p>null</p>" || d == "<div>null</div>")
{
alert ("due to an Error i'm unable to save sata !!!!")
return false
}
Obj[fckeditorName].value = d
}
}
Re: Bug for EditorAreaCSS vs. @import
Re: Bug for EditorAreaCSS vs. @import
http://dev.fckeditor.net/ticket/2261
Re: Bug for EditorAreaCSS vs. @import
i've got the same error on the latest version 2.6
when the FCK didnt get to init itself (no black border an empty see attachment image) i get that error
so i wrote a simple function that goes on the forms onsubmit and i wont let the user save the data if there's null error
var d if (FCKeditorAPI) { for (fckeditorName in FCKeditorAPI.__Instances) { // force update data! d = FCKeditorAPI.GetInstance(fckeditorName).GetXHTML(); //alert (d) if (d== "null" || d==null || d == "<p>null</p>" || d == "<div>null</div>") { alert ("due to an Error i'm unable to save sata !!!!") return false } Obj[fckeditorName].value = d } }Attachments: