Hi,
I have seen that jqxGrid support RTL. I have tried to use to set property using
$('#jqxGrid').jqxGrid({rtl : true});
In Debug mode I can see that rtl parameter is set accordingly but the direction of grid won’t change.
How to do this programatically?
I can do this by doing so
$('#jqxGrid').jqxGrid({rtl : true, columns: myColumnsArray});
But why it won’t render the grid again only passing rtl:true.
Second thing is that why data inside grid won’t align from right to left on setting the parameter? If I want to do that then how can I do this that data inside grid direction also change and header of the grid too? (does it work also for toolbar and pager too ?)