Sivakrishna Donepudi
Sivakrishna Donepudi

Reputation: 372

Formatting issues in asp.net integrated ckeditor

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

Answers (1)

Anna Tomanek
Anna Tomanek

Reputation: 2239

The situation with using CKEditor in the ASP.NET environment looks as follows:

  • The official CKEditor for ASP.NET control has not been updated to CKEditor v4 yet.
  • It is possible to manually update the editor version used with the .NET control to the latest v4 version, however, this will not give you all capabilities of CKEditor 4 because e.g. you will only have access to configuration options existing in the v3. I will list the steps required to perform such update by yourself below.
  • The CKEditor 3 line only gets security updates. No new features or code backports are done for this version and all development now happens in the v4 line.

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):

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

Related Questions