How can I set position total_sales
to right align ?
using float right not working
try to set position:absolute
<style>
.webix_tree_item {
position:relative;
}
.trailing {
background:yellow;
position:absolute;
right:0;
}
</style>
Thanks @intregal, that’s working only end of text
How can I set tree view size match parent layout and position end of right layout , I try
view:"tree",
select:true,
width: 500, // not working
css: {"width": "100%"}, // not working
probably you need to add
.webix_tree > .webix_scroll_cont > .webix_tree_leaves {
display: block;
}
It’s working
Thanks @intregal