Skip to main content
Participant
September 13, 2012
Question

cftextarea richtext not working in IE

  • September 13, 2012
  • 3 replies
  • 1783 views

This works in FF and Chrome but Not IE.. Need Help

<cfform>

<cftextarea richtext="true" name="custombar" skin="office2003"> </cftextarea>

</cfform>

    This topic has been closed for replies.

    3 replies

    Participant
    September 14, 2012

    Has any1 been able to get cftextarea richtext=true to work using IE9? It doesn't even work on the CKeditor's website

    http://ckeditor.com/demo

    I've tried CF 8, 9, 10 and I'm just getting a regular text area. No Icons are showing up.

    <cfform>

    <cftextarea richtext="true" name="custombar" skin="office2003"> </cftextarea>

    </cfform>

    Inspiring
    September 13, 2012
    1. Which version of IE?
    2. Which version of CF?
    3. What do you mean by "doesn't work"?
    4. Read this:http://www.catb.org/esr/faqs/smart-questions.html

    You code works fine for me in IE8 and IE9, but misrenders in IE7, making it unusable (using CF10).  However not knowing what you mean by "doesn't work" makes it hard to determine whether I might have missed something about IE8-9 in my superficial testing.

    --

    Adam

    Participant
    September 13, 2012

    I'm using CF10, IE 9

    When the page loads the textarea box appears but there are no icons.

    Inspiring
    September 13, 2012

    Hi Jay,

    This code works fine in IE 8; Which version of IE you are targetting?

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    <html xmlns="http://www.w3.org/1999/xhtml">

    <head>

    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />

    <title>Untitled Document</title>

    </head>

    <cfform>

    <cftextarea richtext="true" name="custombar" skin="office2003"> </cftextarea>

    </cfform>

    <body>

    </body>

    </html>