Hi, everyone, I'm working with PHP and Symfony 1.2 and I'm trying to change from FCK to CK editor but I'm facing a rare issue.
All my textarea's are named like name="model[field]" as symfony standard for its forms so when I render a form the textarea show an error product of the line in 'ckeditor.js' :
If the CMS have <textarea name="gallery[abstract]" ...> then I found this errors:
In mozilla the error is like '[CKEDITOR.editor] The instance "gallery_abstract" already exists.'
In IE7 the error is a debug problem so instance debbuger came out an show the error and stop the execution.
I guess that CKeditor find the textarea by the name but in this case could be possible that CKeditor search for the id instead the name of the textarea?.
If this cuestion was solved before, could you please redirect me to similar post that have solutions for this problem.
All my textarea's are named like name="model[field]" as symfony standard for its forms so when I render a form the textarea show an error product of the line in 'ckeditor.js' :
- if(z.name in a.instances)throw '[CKEDITOR.editor] The instance "'+z.name+'" already exists.';
If the CMS have <textarea name="gallery[abstract]" ...> then I found this errors:
In mozilla the error is like '[CKEDITOR.editor] The instance "gallery_abstract" already exists.'
In IE7 the error is a debug problem so instance debbuger came out an show the error and stop the execution.
I guess that CKeditor find the textarea by the name but in this case could be possible that CKeditor search for the id instead the name of the textarea?.
If this cuestion was solved before, could you please redirect me to similar post that have solutions for this problem.