Friday, July 15, 2016

Enabling CkEditor Spell Checking and Copy Paste option :


Ck Editor is a Commonly used Editor in Flex Environment or any html using web Applications ,where Flex has the Restrictions to some of the HTML Tags 
To Avail HTML in Flex we Use Several Editors from On line, Like the One is ck Editor.

The Ck Editor Spell Checker is not availaible  by default it must be customized to show the ck Editor dictionary ,copy paste Options .

1.Go to the working project directory  and to assets folder there you can see the directory           
-> ckeditor/_source/core/config.js;
-> Open the file location and add the Line;
-> removePlugins : 'contextmenu,tabletools',;

and remove the line  
->removePlugins : ' ';


2. And again go to directory
 ->ckeditor/_source/plugins/wysiwygarea/plugin.js
add the lines
->CKEDITOR.config.removePlugins =  'liststyle,tabletools,scayt,menubutton,contextmenu';
  Change the spellChecker disable true to false
-> CKEDITOR.config.disableNativeSpellChecker = false; 

Now the CkEditor will Check the Spelling of the Entered Words and the Copy paste options are also available now.

Any doubts add it to comment .


No comments:

Post a Comment

LDAP Configuration with Shiro:

What is LDAP? LDAP is Lightweight Directory Access Protocol. LDAP is a global directory service, industry-standard protocol, which is...