Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Cftextarea with ie10 issue

Guest
May 21, 2013 May 21, 2013

Has ant one experienced cftextarea not displaying tool bar in ie 10.  Thanks in advance.

TOPICS
Advanced techniques
3.4K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
May 24, 2013 May 24, 2013

I have the same problem but no answer. There is an solution with ajaxOnLoad(). Maybe someone can explane this solution?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
May 24, 2013 May 24, 2013

Here is the solution.

You have to make the changes in de FCKEditor.js

http://http://kartiksehgal.wordpress.com/2012/11/16/fckeditor-bug-fix-for-ie10/

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
May 28, 2013 May 28, 2013

Link you provide in reply is broken. also what kind of chagnes I've to make in FCKEditor.

Broken link :-

http://http://kartiksehgal.wordpress.com/2012/11/16/fckeditor-bug-fix- for-ie10/

Thanks in advance.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
May 28, 2013 May 28, 2013

IE 10 is the first browser where the major version number (before the dot) is in double digits.
Most scripts, including the one written for FCKEditor at the time had a browser detection regex pattern that expected only a single digit before the dot (see below)

var sBrowserVersion = navigator.appVersion.match(/MSIE (.\..)/)[1] ;

The following change will thankfully remediate the situation immediately.

var sBrowserVersion = navigator.appVersion.match(/MSIE ([\d.]+)/)[1] ;

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Jun 03, 2013 Jun 03, 2013

Thanks.

where do i have to add this line. var sBrowserVersion = navigator.appVersion.match(/MSIE ([\d.]+)/)[1] ;

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jun 04, 2013 Jun 04, 2013

/CFIDE/scripts/ajax/FCKeditor/fckconfig.js

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Sep 11, 2013 Sep 11, 2013

In our configuration it was actually that line in the fckeditor.js file, not fckconfig.js (same directory).

That change did allow the editor to show up in IE10, but like some other users have reported - the text field still doesn't accept actual input. Has anyone run into that or know of a solution?

Thanks.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Contributor ,
Jan 15, 2014 Jan 15, 2014
LATEST

I have the same Issue, but with IE11 now.

I did the change :

var sBrowserVersion = navigator.appVersion.match(/MSIE ([\d.]+)/)[1] ;

and the editor toolbar does not come up.

I am very ennoyed with this. I am surprised that no many people ask solution for this.

Does that mean that cftextarea is not used by CF users ?

And I am spending a lot of time with so basic things wich should be responded by adobe

as soon as possible.

Thanks for any urgent help.

Pierre.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources