Reverse english words in RTL tree

when I enable RTL in DHTMLXTree, all english words turn into reverse order. for example DhtmX will be changed into XlmthD. But Persian words look true. I want to use mixed persian and english words in a RTL tree and I want only tree structure to be RTL, not words. what should I do?

You may redefine the " unicode-bidi" property for trees with english words

#treecontainer .containerTableStyleRTL span { unicode-bidi: normal; }

Where “treecontainer” is the id of the container where tree is initialized:

tree = new dhtmlXTreeObject(“treecontainer”,“100%”,“100%”,0);

That’s right! Thank you :slight_smile: