Hi,
The FCKeditor looks cool, but I need one more feature which isn't implemented there (except the mozilla support).
I need a right to left direction button, other wise, whenever I'm trying to write something, at the end of each word the cursor jumps to the begining of the sentence.
The FCKeditor looks cool, but I need one more feature which isn't implemented there (except the mozilla support).
I need a right to left direction button, other wise, whenever I'm trying to write something, at the end of each word the cursor jumps to the begining of the sentence.
RE: Right to left support
When I know that a field is in hebrew, I check if it is empty.
If so, I change it for:
<span style='text-align:right;direction:rtl'><br></span>
Good luck !!
Is there a way to apply a custom HTML tag?
javascript:editor.surroundHTML('<bdo dir=ltr>', '</bdo>');
as a bookmark, and then applying this bookmaklet whenever I need it (or it can be
javascript:editor.surroundHTML('<span style='text-align:right;direction:rtl'>', '</span>');)
Is there a similar way to do it in FCKeditor?
And is there a function accessible by javascript on the client side to insert attributes in the surrounding tag around the cursor position (i.e., I would want something like javascript:addattr('dir=rtl') to add the dir=rtl attribute to the <P> or <DIV> tag surrounding the cursor position, or the selection.
RE: Right to left support
I also need this. I'm a DotNetNuke professional and I need to integrate RTL & LTR functionality in DotNetNuke editor. Unfortunately neither FreeTextBox nor FCKEditor don't have this feature.
RE: Right to left support
Use this plugin https://sourceforge.net/tracker/index.p ... tid=737639 as a starting point and you can try to improve it.