views:

437

answers:

1

Hi,

I am using the HtmlEditor Control included in the AjaxControlToolkit (patched version v62210 because I needed some of the included fixes).

Unfortunately the textarea in the Html Editor control is never displayed in Chrome and Safari (both latest version). It doesn't matter if there is text in it or not. It does work on the AjaxControlToolkit Sample page with both browsers though.

Any ideas?

+2  A: 

fixed it with the following css definition:

#ctl00_CR_TabContainer_TabPanelDetails_tbText_ctl02_ctl00
{
    height: auto !important;
}

The selector is page specific but can be determined easily using Firebug.

SimonW
A better way to reference the iframe in css is .ajax__htmleditor_editor_base iframe{ height: auto !important;}
Stephen lacy

related questions