i am trying to make full-height complex interface, but when element with view=“form” added on page - all elements collapse (up to form height).
is it bug? or maybe i do something wrong?
sample code - like this:
<body>
<div webix-ui>
<div view="cols">
<div webix-data="listData" template="#name#" select="1"></div>
<!---- problem part ----->
<div view="form">
<div view="text" name="name">
</div>
<!---- end of problem part ----->
</div>
</div>
</body>
my question is: how i can add form elements and keep all other with full page height?