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
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
#6119
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!