Hi,
I'm trying to load CKEditor in RTL mode, and can't find a way to do it.
In FCKEditor i could add this line:
FCKConfig.ContentLangDirection = 'rtl' ;
but i cant find the CKEditor command for it.
Can anyone help me?
I guess the answer should me something like: adding into config.js command such as:
config.direction = 'rtl';
but it doesnt working (maybe wrong syntax or something).
I'm trying to load CKEditor in RTL mode, and can't find a way to do it.
In FCKEditor i could add this line:
FCKConfig.ContentLangDirection = 'rtl' ;
but i cant find the CKEditor command for it.
Can anyone help me?
I guess the answer should me something like: adding into config.js command such as:
config.direction = 'rtl';
but it doesnt working (maybe wrong syntax or something).
Re: Display CKEditor in RTL mode
Re: Display CKEditor in RTL mode
config.contentsLangDirection = 'rtl';
Do you have any idea, I'm looking for a way to have Right to Left AND Left to Right CKEditor on the same page.
Or how to implement RTL/LTR buttons on the floating panel.
Re: Display CKEditor in RTL mode
You can have several instances of CKEditor in a page and each one with its own configuration. Just look at the provided samples, for example the skins one.
Look also at the docs: http://docs.cksource.com/CKEditor_3.x/D ... igurations