I have implemented CKEditor into one of my web sites. It correctly checks and corrects any mis-spellings, but when it is finished checking and I click the "Finish Checking" button the progress bar appears and just continues to act like it is processing something. I have to click the "Cancel" button to close it. Your help is appreciated.
Fri, 03/11/2011 - 04:48
#1
Re: CKEditor Finish Checking Button
I am afraid no one will be able to help you in any way if you do not give more details about your setup. This kind of issue does not occur on the demo site with the latest CKEditor version and standard settings implemented, so how can we know what exactly it is that you are running?
What is your environment? What errors (if any) do you see in Firebug? The more info you give, the bigger the chance that someone will be able to debug/reproduce it.
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help.
Visit the new CKEditor SDK for samples showcasing editor features to try out and download!
Re: CKEditor Finish Checking Button
I have this in the header:
<script type="text/javascript" src="/ckeditor/ckeditor.js"></script>
...and I have this in the body:
<tr>
<td align="center"><textarea name="editor1" cols="200" rows="800"><%=DisplayContent(Request.QueryString("contentid"))%></textarea></td>
</tr>
<script type="text/javascript">
CKEDITOR.replace('editor1',
{
toolbar:
[
['NewPage', 'Preview', 'Source'],
['Cut', 'Copy', 'Paste', 'PasteText', 'SpellChecker'],
['Undo', 'Redo', '-', 'Find', 'Replace', '-', 'SelectAll', 'RemoveFormat'],
['Table', 'HorizontalRule', 'Smiley', 'SpecialChar', 'PageBreak'],
'/',
['Format'],
['Bold', 'Italic', 'Strike', 'FontSize', 'Font'],
['NumberedList', 'BulletedList', '-', 'Outdent', 'Indent', 'Blockquote'],
['Link', 'Unlink', 'Anchor'],
['Maximize', '-', 'About']
]
});
CKEDITOR.config.height = 560;
CKEDITOR.config.width = 600;
</script>
DisplayContent() is a server-side routine that grabs the content from the database and displays it within the editor.
Re: CKEditor Finish Checking Button
Re: CKEditor Finish Checking Button
I'm afraid you just hit the spell checker performance bug that occurs with some (larger) documents and is supposed to be fixed by SpellChecker.net, the third-party provider of the spell checking solution implemented in CKEditor.
This issue is tracked in ticket #6119, you may add your e-mail to the CC field of the ticket in order to be notified of its resolution.
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help.
Visit the new CKEditor SDK for samples showcasing editor features to try out and download!
Re: CKEditor Finish Checking Button
I didn't see how to add my E-mail to the CC list though?
Thanks!
Re: CKEditor Finish Checking Button
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help.
Visit the new CKEditor SDK for samples showcasing editor features to try out and download!
Re: CKEditor Finish Checking Button
Re: CKEditor Finish Checking Button
Thanks!