Even if i change the CKEDITOR.config.specialChars=[....] the changes are not being reflected into the program, even if i delete few elements still the changes made are not being reflected in the program
If so, I suggest you read some documentation on how to customize CKEditor because CKEditor is a highly customizable tool for developers and no one can really take care of your editor settings for yourself.
I suggest you start with the Developer's Guide; some useful info about editor configuration is here:
There is a secondary array config.extraSpecialChars found in specialchar.js which is supposed to be able to be set in config.js. But in the current development version the extra chars are not added to the main special chars array.
If you are familar with javascript you can do this for yourself by downloading the development version from github and then adding the following in the onLoad function:
chars = chars.concat(extraChars);
So you will then have this:
var columns = this.definition.charColumns,
extraChars = editor.config.extraSpecialChars,
chars = editor.config.specialChars;
You can then recompress the file using the java yuicompressor, which you will have to locate and download.
See the specialChars
See the specialChars configuration option.
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!
Even if i change the CKEDITOR
Even if i change the CKEDITOR.config.specialChars=[....] the changes are not being reflected into the program, even if i delete few elements still the changes made are not being reflected in the program
If so, I suggest you read
If so, I suggest you read some documentation on how to customize CKEditor because CKEditor is a highly customizable tool for developers and no one can really take care of your editor settings for yourself.
I suggest you start with the Developer's Guide; some useful info about editor configuration is here:
http://docs.ckeditor.com/#!/guide/dev_howtos_basic_configuration
http://docs.ckeditor.com/#!/guide/dev_configuration
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!
There is a secondary array
There is a secondary array config.extraSpecialChars found in specialchar.js which is supposed to be able to be set in config.js. But in the current development version the extra chars are not added to the main special chars array.
If you are familar with javascript you can do this for yourself by downloading the development version from github and then adding the following in the onLoad function:
chars = chars.concat(extraChars);
So you will then have this:
var columns = this.definition.charColumns,
extraChars = editor.config.extraSpecialChars,
chars = editor.config.specialChars;
You can then recompress the file using the java yuicompressor, which you will have to locate and download.