It seems that the only way you can get the cursor to show in the text area is to click in a small section towards the top left hand corner thereof. Otherwise the control appears to be disabled.
Is there any way to allow the user to click anywhere in the text area and hence show the cursor?
Is there any way to allow the user to click anywhere in the text area and hence show the cursor?

Re: Clicking in the text area
Re: Clicking in the text area
Re: Clicking in the text area
Also, what method are you using to create CK on the page?
Re: Clicking in the text area
1) My page loads with 4 text boxes and a textarea that is converted to a CKEditor.
2) I have to click almost exactly where the first character would be in the CKEditor before it will actually give a cursor and let me me type
3) Assuming I don't type and set the focus somewhere else on the page... If I click back on CKEditor anywhere in the textarea, it will immediately get focus and have a cursor. (for me, at least, it's only on the first focus of the editor.) --- incidentally, I've noticed the same issue with the forums at asp.net.
Here's how I'm creating the editor:
<textarea cols="80" id="txtComment" name="txtComment" rows="10"><%= strMessageContent %></textarea>
<script type="text/javascript">
//<![CDATA[
CKEDITOR.replace('txtComment',
{
skin: 'kama',
toolbar : 'ContactUs'
});
//]]>
</script>
Re: Clicking in the text area
CKEDITOR.replace( 'YourEditor',
{
on:
{
'instanceReady' : function( evt )
{
//Set the focus to your editor
CKEDITOR.instances.YourEditor.focus();
}
}
Re: Clicking in the text area
I.E. 7.0 is where it happens. The parent element is a form. The editor is in a <td><tr> element.
Re: Clicking in the text area
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
Re: Clicking in the text area
http://dev.fckeditor.net/ticket/1659