Log in or register to post comments
Last post
problem when using more than 2 forms with ckeditor
I'm trying to use ckeditor with more than 2 form like

<form id="form1">
  <textarea class="ckeditor" name="t1"></textarea>
</form>
<form id="form2">
  <textarea class="ckeditor" name="t2"></textarea>
</form>
<form id="form3">
  <textarea class="ckeditor" name="t3"></textarea>
</form>


then there are problems.
1st editor works fine,
but 2nd one won't follow the settings like config.uiColor
and 3rd one even disappeared!

can anyone help me solve this problem?
Re: problem when using more than 2 forms with ckeditor
You'll have to provide a working sample if you expect us to understand your problem
Re: problem when using more than 2 forms with ckeditor
Thanks for the reply.

http://tinyurl.com/yedlfe4

This is the working sample.
Re: problem when using more than 2 forms with ckeditor
I don't see any difference between the three editors.
Re: problem when using more than 2 forms with ckeditor
Oh I found that if I use IE or Firefox then I can see 3 editors,

but if I use google Chrome then that's different.

this is what I see by Chrome: http://tinyurl.com/y8lj5os

Is it mean that the ckeditor does not full support google Chrome?

or is there any ways to fix this?
Re: problem when using more than 2 forms with ckeditor
Yes, I see the problem in Chrome, but if you open the console you'll find that it's claiming that there are several errors in your page. You should start by fixing them before trying to debug it further.
For example the config.js file is missing: http://www.jafnet.co.jp/test/config.js?t=99GE and you're using a XHTML like syntax for the textareas: <textarea class="ckeditor" id="content_1" name="content" /></textarea><br />

Also, your page is missing a doctype, you should use one to trigger standards rendering mode.
Re: problem when using more than 2 forms with ckeditor
Thanks for your reply again.

I fixed those problems you said,

but there's one I can't fix that is:
Uncaught TypeError: Cannot read property 'nodeName' of undefined              ckeditor.js:22


:shock:
Re: problem when using more than 2 forms with ckeditor
Yes, putting each textarea in its own form in the skins sample fails in Chrome so you should file a ticket about it.