Reputation: 372
I'm using asp.net integrated ckeditor and having issues with content formatting like Bold, Italic & Underline. We had to press multiple times.
Any work around for this ? Using 3.6.6.2 version
Upvotes: 1
Views: 469
Reputation: 2239
The situation with using CKEditor in the ASP.NET environment looks as follows:
You are of course free to replace the CKEditor library (the editor itself) in the existing ASP.NET integration with the latest version of CKEditor 4.x. Depending on what you need, it may fit your needs. That will fix e.g. the various IE problems. From what I understand inline editing won't work, though.
Here are the steps needed to manually update CKEditor version inside the v3.6.6.2 ASP.NET control (the latest ASP.NET version):
your-ckeditor-aspnet-3.6.6.2-folder\_Samples
and delete the \ckeditor\
directory.\ckeditor\
directory.\ckeditor\
directory to your-ckeditor-aspnet-3.6.6.2-folder\_Samples
.Please note, in particular, that in CKEditor 4.1 we have introduced Advanced Content Filter (ACF). If you plan to use the content filter, you would have to use config.js
to change ACF settings as it can’t be done from the control level.
Last but not least, CKEditor is a pure JavaScript application, so in most cases you can probably just use the standard installation package and use the JavaScript integration instead of the ASP.NET control.
Upvotes: 4