Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
642 views
in Plugins by
When working in the editor, and I press the Tabulator key on the keyboard, I lose focus from the editor. I would expect it to make a tabulation inside the "document".

Is this a bug, or is there a way to fix this?

2 Answers

+2 votes
by
selected by
 
Best answer

Yes, Scott is right.

Here is the way I solved it:

I installed the tab plugin with the CKEditor4 plugin (that allows you to visually modify the CKEditor settings - in the admin panel).

Since the CKEditor4 plugin uses the CKEditor v. 4.2, I had downloaded and installed the 4.2.3 version of the tab plugin.

Just unzip it under the ....\qa-plugin\ckeditor4\plugins\ 

(where ckeditor4 is the folder where you've installed the CKEditor4 plugin).

Under the admin panel --> CKEditor4 --> "Other Configurations" put these 2 lines at the top :

extraPlugins:'tab',
tabSpaces:4,

and save.

When you'll hit the tab key inside the editor 4 spaces will be inserted to "simulate" a tab.

This is the way I solved it, even if I think it's not very "clean" (I do not like the spaces instead of the tab)

by
Thanks! But I am currently using the BBcode editor. I guess it won't work there?
by
I don't know the BBCode plugin very well.
I see it uses the Markitup editor.
You could apply the same concept (simulate a tab with 4 spaces) to that editor.
To do it find this file :
...\qa-plugin\bbcode-editor\markitup\jquery.markitup.js
and open it.
Change line 47 from :

onTab:                    {},

to

onTab:                    {keepDefault:false, replaceWith:'    '},

and save.
Now you should be able to use the tab key inside the editor.
If you prefer here is the js already modified :
https://www.dropbox.com/s/4quc7i1welcw0e7/jquery.markitup.js
by
That worked fine. Thankyou :-)
by
Nice maxj. Version up of CKEditor is very early. When I consider compatibility with CKEditor plugin, update timing of Q2A plugin is difficult ...
0 votes
by

Unfortunately that's just how web pages work. Tab is for moving to the next input field.

However there may be an add on for the CKeditor you could implement. This one allows tabbing between table cells and this one allows Tab to indent lists. I don't see one for inserting a tab character but maybe there is somewhere.

...