Hi.
I'm using TreeView in a right to left page. but it is not showing as expected. This is the HTML I'm using:
<div class="k-rtl">
<div id="accessTree"></div>
</div>
I'vs attached an image of what I see in Chrome.
I have managed to get it working by these lines of CSS:
.k-rtl .k-treeview .k-plus, .k-rtl .k-treeview .k-minus, .k-rtl .k-treeview .k-plus-disabled, .k-rtl .k-treeview .k-minus-disabled
{
float: right;
}
.k-rtl .k-treeview .k-item
{
padding: 0 16px 0 0;
}
The second image shows the tree after applying the css.
Am I missing something or this is an issue?
Thanks in advance.
I'm using TreeView in a right to left page. but it is not showing as expected. This is the HTML I'm using:
<div class="k-rtl">
<div id="accessTree"></div>
</div>
I'vs attached an image of what I see in Chrome.
I have managed to get it working by these lines of CSS:
.k-rtl .k-treeview .k-plus, .k-rtl .k-treeview .k-minus, .k-rtl .k-treeview .k-plus-disabled, .k-rtl .k-treeview .k-minus-disabled
{
float: right;
}
.k-rtl .k-treeview .k-item
{
padding: 0 16px 0 0;
}
The second image shows the tree after applying the css.
Am I missing something or this is an issue?
Thanks in advance.