Dear ckeditor 3.4 users,
I want to see an arrow in the editing area when I press the tab key.
This should look the same as you would see when you use the word
text writer program.
I have this simple code:
When I press tab in the editing area, an indentation takes place, but I can't see the arrow,
but the source code looks like this:
But when I switch back to wysiwyg view, I get this:
Now switch to source view again:
As you can see, the number of arrows increases every time I switch from wysiwyg to source andb back.
So what can I do?
How can I get the arrow without all this trouble?
Looks like a bug...
Best regards
toller43
I want to see an arrow in the editing area when I press the tab key.
This should look the same as you would see when you use the word
text writer program.
I have this simple code:
... var editor = CKEDITOR.replace( 'editor1' ); CKEDITOR.on("instanceReady", function(ev) { ev.editor.dataProcessor.writer.indentationChars = '\u2192'; // arrow }); ...
When I press tab in the editing area, an indentation takes place, but I can't see the arrow,
but the source code looks like this:
<p> →test </p>
But when I switch back to wysiwyg view, I get this:
→test (several blanks here!)
Now switch to source view again:
→→test
As you can see, the number of arrows increases every time I switch from wysiwyg to source andb back.
So what can I do?
How can I get the arrow without all this trouble?
Looks like a bug...
Best regards
toller43