Window inside Iframe

Hi, i have an iframe like this

view: "iframe",
adjust: true,
id: "iframeNewContact",
width: 500,
height: 200,
src: "MyPage.aspx"

inside MyPage i create i webix window:

view: 'window',
modal: true,
move: true,
position: "center",
...

When i move the window it disappear near the iframe border. There is a way to force the window creation outside of the iframe?

Thanks

You need to create a window in the top level document, which means both webix.js and code that creates window must be called in the top document. ( UI created in the iframe can’t be rendered outside of its borders )

Ok thanks very much