Hello guys,
First of all CKEditor is awesome!!!!
But now my problem, I need to implement my owen data-prcoessor wich shall be used instead of the standard dataprocessor.
I already tryed it to overwrite the standard processor via a pluign, wich is a copy.of the normal htmldata processor and just rediecting the input 1:1 . but its still manipulating my input data (wich it is not suposed to do).
So now my Question: How do I build my own data-processor, what function must it contain and how do I import it to CKEditor 4.2.2?
Update the Processor works, but CKEditor is still manipulating
my ckeditor/plugins/mycoreprocessor/plugin.js
my line in the config.js
BUT: CKEditor is still manipulating the input-data.
1. Why?
2. How can i turn the manipulation of input-data off?
You should check out the
You should check out the BBCode plugin. It's a perfect example of how to modify the dataprocessor.
Customer and Community Manager, CKSource
Follow us on: Facebook, Twitter, LinkedIn
If you think you found a bug in CKEditor, read this!
Hi sebstefanov,
Hi sebstefanov,
Originaly I have "the problem" that I just need to turn really ALL filters of.
I have already 1 solution (i added all tags i found to the CKEDITOR.dtd, in the sections where they belong), but its not compfortabe my input contains some non-html-tag (xml-Tags) and I just want to tell CKEditor, that it doesn't know an empty node like <hidden attr1="jhfkngjh" ... attrN=.." /> then he shall parse the input 1:1 through the Editor-Panel, but when its normal html-content he can still filter it.
So isn't there any possibilty to change the standard behavior of the dataprocessor and filters if its an unknowen node, that instead of trying to parse it into well formet html just send it 1:1 through the input?
basti890
basti890
I have the same problem to but i just reinstalled all and now it is working for me :)
Your wrote your own
Your wrote your own DataProcessor and the source of your data is not manipulated / changed or transformed ?
OK, I'll try with reinstalling CKEditor. :)
Problems
after i tryed it again, it doesn't that bad, but its messing my input:
into the following output:
So I need to diable the adding of end-tags to unknowen tags (like <hidden>) and I need to disable the replacement of < with < and > with > ← this is done in the ouptu, not when data is loaded, when i view it in source-mode of CKEditor, the < and > are fine.
EDIT: OK after research i found out, thta the whole data manipulation is done while reading the input.