Hello,
I am opening a new window pop up on click of a button. How can i position this window to a particular Y,X axis co-ordinates on browser window?
it always comes in center of window.
Thanks
I am opening a new window pop up on click of a button. How can i position this window to a particular Y,X axis co-ordinates on browser window?
it always comes in center of window.
Code:
isc.defineClass("MyWindow", "Window").addProperties({
headerIconDefaults: {
width: 16,
height: 16,
layoutAlign: "center",
src: "favicon.png"
},
keepInParentRect: true
});
Comment