Ii am trying to useFCKEditor with .net and FireFox.
I can view the demo with fireFox at the download site, but when I run the sampl01.aspx page, I can only display the plain textarea box without the toolbar.
The same .net page views properly in IE6.
Is there something special I need to do to get this working with Firefox ?
thanks for any help
I can view the demo with fireFox at the download site, but when I run the sampl01.aspx page, I can only display the plain textarea box without the toolbar.
The same .net page views properly in IE6.
Is there something special I need to do to get this working with Firefox ?
thanks for any help
RE: .net, Firefox1.0PR, and FCKEditorv2.0 pro
It's actually a problem with Firefox 1.0PR. The bug is related to the navigator.userLanguage property.
Check out this forum for more info:
http://www.webmasterworld.com/forum91/2476-2-10.htm
RE: .net, Firefox1.0PR, and FCKEditorv2.0 pro
since it is a bug in Firefox for version 2.0b2 i highly recommend using the following code when initializing FCK Editor with that browser ...
// some strange bug in Firefox PR 1.0 needs:
agent = navigator.userAgent;
if (agent.search(/0\.10\.1/)<-1){
oFCKeditor.Config['AutoDetectLanguage'] = false;
}
this should at least let the editor work in the browser ...
by the way it seems that the demo version on the fckeditor site uses another code base.. not ?
RE: .net, Firefox1.0PR, and FCKEditorv2.0 pro
I've publeshed a patch for this Firefox bug. Check this out:
http://sourceforge.net/tracker/index.ph ... tid=543655
FredCK
Frederico Knabben
CKEditor Project Lead and CKSource Owner
--
Follow us on: Twitter | Facebook | Google+ | LinkedIn
RE: .net, Firefox1.0PR, and FCKEditorv2.0 pro
the correct regexp would be:
if (agent.search(/20041001/)>-1){
oFCKeditor.Config['AutoDetectLanguage'] = false;
}
RE: .net, Firefox1.0PR, and FCKEditorv2.0 pro
also i think its better for checking this special fiorefox version than existance of navigator.userLanguage