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

Cftextarea with ie10 issue

Guest
May 21, 2013 May 21, 2013

Copy link to clipboard

Copied

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

TOPICS
Advanced techniques

Views

3.3K

Translate

Translate

Report

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

Copy link to clipboard

Copied

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

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

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/

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

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.

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

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] ;

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

Thanks.

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

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

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

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

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.

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

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.

Votes

Translate

Translate

Report

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
Documentation