get window position to save it and restore it

Hi team,

How could i retreive the x & y coordinates of a webix window please ?

Regards,
Xavier

Hi, @XavierDP
try this

var top = window.$view.offsetTop;
var left = window.$view.offsetLeft;

https://snippet.webix.com/gt7kwcr7

Thank you very much @intregal !