window and browser resize

http://webix.com/snippet/be71a122

how make if browser resize, window resized too… ?

You can use function for “position” attribute. Such function may contain window sizing logic.

  position:function(sizes){
    sizes.width = sizes.maxWidth - 50;
    sizes.height = sizes.maxHeight - 100;    
    sizes.left = 25;
    sizes.top = 50;
  }, 

http://webix.com/snippet/f0fca23d