Some times on slow clients i have the problem, that FCK-editors are losing their data on submit. That means, the user is editing text in FCK and after submit, the corresponding field is set to "NULL", instead of the typed text.
Is this a known issue? How can i prevent this behavior? The text are submitted ALWAYS if i do not use FCK and type in plaintext...
Is this a known issue? How can i prevent this behavior? The text are submitted ALWAYS if i do not use FCK and type in plaintext...

Re: losing data on submit...
Re: losing data on submit...
Re: losing data on submit...
Re: losing data on submit...
Re: losing data on submit...
I am not able to replicate the error on my PC, so it's a frustrating exercise.
Any help would be much appreciated.
Re: losing data on submit...
Re: losing data on submit...
can anyone tell me how to solve this problem
Re: losing data on submit...
'
to represent a single apostrophe, not the apostrophe character itself.
Modern browsers will display it as an apostrophe on the page.
Dennis
Re: losing data on submit...
I am saving large amout of data at a time that will need editing from time to time. Even if i use ': instead of an apostrophe to submit my data to the database when i try to edit the saved data with fckeditor it reads the ' as an apostrophe and you cannot save it again.
I found this encoding in a file named fckeditor.js
many other files also have replace clauses i'll try to edit them to include apostrophe and get back to you guys if you have any suggestion, will appreciate it
FCKeditor.prototype._HTMLEncode = function( text )
{
if ( typeof( text ) != "string" )
text = text.toString() ;
text = text.replace(
/&/g, "&").replace(
/"/g, """).replace(
/</g, "<").replace(
/>/g, ">") ;
return text ;
}