right float of dataview

hi
i tried to apply right to left to dataview and not result.
really there is not solution for it?

webix is very cool framework but when it is not open source and dose not have support from its developers, maybe its big risk to choose it as base of a product

In dataview, it will be enough to apply a simple CSS: https://webix.com/snippet/e98c8069

Regarding text position & design, tеhere’s no special support for RTL languages.
Depending on the complexity of the UI, “mirroring” the interface may not be enough, so you need to apply selective changes for text-align & direction в CSS and configure the UI (for example, the structure of columns) correspondingly.

it is not open source
Webix free version is distributed under GPL licence.
The non-minified source code is available in both GPL and Pro versions as webix_debug.js

not have support from its developers
All forum questions are usually resolved by their turn regarding the priority of the developing process and official support tickets. Still, it is the public place where users can share their issues, solutions and suggestions freely.

hi and thanks
what i mean is floating of items from right to left, not style of contents of each item of dataview.
for example if dataview have 5 columns and there are 3 items, items positions start from right of container and in this sample 2 column of left side remind empty.

@mmmm13601 try to use this style:

.webix_dataview_item {
    float: right !important;
}

https://webix.com/snippet/1b4c21c3

thanks so much