Helo,
I have configuration like this:
<script type="text/javascript">
var theme = "blue_row";
var left_container = {
width: 320,
multi: true, //enable open multi view/panel same time
rows: [
//First Row
{
header: "User",
body: {
template: "testing"
}
},
{
header: "Vehicle",
body: {
template: "testing"
}
}
]
};
var right_container = {
autoheight:false,
gravity: 3,
type: "clean",
rows: [
{view: "tabbar", multiview: true, selected: "sOffers", options: [
{id: "sOffers", value: "Special offers", width: 150},
{id: "regular", value: "Regular", width: 150},
{id: "flightInfo", value: "Flight Info", width: 150}
]
},
{
view: "multiview",
cells: [
{
},
{
}
]
}
]
};
var ui = {
view: "scrollview",
body: {
type: "space",
rows: [{
view: "toolbar",
height: 55,
elements: [
{view: "label", template: "<span class='main_title'>Webix Airlines Manager</span>"}, {},
{view: "icon", width: 40, icon: "info-circle"},
{view: "icon", width: 40, icon: "comments"},
{view: "icon", width: 40, icon: "cog", popup: "lang"}
]
},
{
type: "wide",
cols: [left_container, right_container]
}]
}
};
webix.ready(function () {
webix.ui(ui);
});
</script>
First
https://s10.postimg.org/5vz2wcqcp/first.png
After
https://s18.postimg.org/f1gnyyod5/second.png
when row “User” and “Vehicle” minimized, right size (Height) follow left size, howto prevent this?