http://cksource.com/forums/viewtopic.php?f=5&t=11502
CKEDITOR.editorConfig = function (config) {
// Define changes to default configuration here. For example:
config.language = 'it';
config.uiColor = '#A6C9E2';
config.htmlEncodeOutput = 'false';
config.AutoUpdateElement = 'true';
config.resize_dir = 'vertical';
config.height = '100';
config.toolbar = 'MyToolbar';
config.extraPlugins = 'ajax';
config.resize_minHeight = '40';
config.toolbar_MyToolbar =
[
{ name: 'documento', items: ['Print', 'Maximize'] },
{ name: 'clipboard', items: ['Cut', 'Copy', 'Paste', 'PasteText', 'PasteFromWord', '-', 'Undo', 'Redo'] },
{ name: 'editing', items: ['Find', 'Replace', '-', 'SelectAll', '-', 'SpellChecker', 'Scayt'] }
];
config.removePlugins = 'elementspath';
config.scayt_sLang = 'it_IT';
};

Re: disable \r\n\t
Re: disable \r\n\t
Re: disable \r\n\t
Re: disable \r\n\t
Re: disable \r\n\t
(untested)
<CKEditor:CKEditorControl ID="CKEditor1" runat="server"></CKEditor:CKEditorControl> <script type="text/javascript"> var editor = CKEDITOR.instances.CKEditor1; editor.on('instanceReady', function() { var writer = editor.dataProcessor.writer; writer.indentationChars = ''; writer.lineBreakChars = ''; }); </script>Re: disable \r\n\t
Is that it?
Is that really the best anyone can come up with for this problem? So, every paragraph tag gets \r\n put in to it and you have to write code to constantly remove it!
Says 'editor' is an unknown
Says 'editor' is an unknown object when I run the code above.