Hi,
I’m in the process of extending an application to handle arabic language. (Which uses right-to-left text-direction)
I’ve been going through the tree docs, but haven’t been able to find anything on putting your tree (or grid for that matter) into rtl mode. Is this supported?
The tree renders somewhat ok i an dir=“rtl” enabled block, it is the lines connecting the children to their parent that point in the wrong direction e.g:
root
child-1 |-
child-2 |-
–
Chris
The tree supports RTL mode
dhtmlx.com/docs/products/dht … 2511068000
RTL mode can be enabled|disabled by
tree.enableRTL(true); // method available in PRO version only
The grid has not any special methods for RTL support, basically placing grid inside container with dir=“rtl” mostly solves issue ( except of column resizing feature , which looks strange in RTL mode and need to be disabled in such case )