Resize window

Hi Webix team,

I want to resize my webix window only in width(to some minWidth) not in height.

https://snippet.webix.com/3t7vca1j

You can redefine $resizeMove handler for the window

https://snippet.webix.com/g1ngyxrr

win1.$resizeMove = function(progress){
  progress.y = win1.config.height;
}

Thanks maksim…

Is it possible to provide minWidth in the same snippet
https://snippet.webix.com/g1ngyxrr

Please provide solution for this.

progress.x = win1.config.width;

Resizer does not work properly if we provide progress.x. I want to resize my window to some minWidth.

https://snippet.webix.com/4vdsl9n1

progress.x = Math.max(progress.x, 200);