form view and height

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?

By default form sizes self to the inner content, you can add scroll to the form

<div view="form" scroll="true">

or add some free-space element to the form

       <div view="form">
           <div view="text" name="name"></div>
           <div view="spacer"></div>
       </div>

http://webix.com/snippet/a9f0a65f

thanks for quick answer