Hi ,
This is naveen, we are using FCKeditor in my project. it is working fine IE. But when i am trying to test in Mozill(3.0). If i eidit the text area and click on save button in code behind page i am geeting old value only.
Eg:-
i have property LongDesc
formload
{
LongDesc ="Hello sir";
ctlFCKEditor.value = LongDesc;
}
btnSaveClick()
{
LongDesc = ctlFCKEditor.value ;
//If i check longdesc value same "Hello sir" even though i have edit that value to "Hello madam". This is working fine in IE. please let me know any one knows solution for this issue.
}
Thanks
Naveen M
This is naveen, we are using FCKeditor in my project. it is working fine IE. But when i am trying to test in Mozill(3.0). If i eidit the text area and click on save button in code behind page i am geeting old value only.
Eg:-
i have property LongDesc
formload
{
LongDesc ="Hello sir";
ctlFCKEditor.value = LongDesc;
}
btnSaveClick()
{
LongDesc = ctlFCKEditor.value ;
//If i check longdesc value same "Hello sir" even though i have edit that value to "Hello madam". This is working fine in IE. please let me know any one knows solution for this issue.
}
Thanks
Naveen M

Re: FCKEditor is working for IE but not for Mozilla.
http://jlcoady.net/aspnet/fckeditor-wor ... pdatepanel
Re: FCKEditor is working for IE but not for Mozilla.
it mostly seemed to occur when submitting the form too early... it seemed that the FCKEditorAPI was not ready
My only question now is (to understand) why the FCKEDitorAPI is not defined?? because the scripts are not loaded yet... or something else.