Hi. if a window contains a frame that I want to resize with a call to the “resize” function, the lateral resizing (both from the left and from the right) is slow and tends to lock, which does not happen if instead it resizes from a corner or from bottom or from above. What can it depend on?
tks in advance.
PS: I report the code of the resize function:
win.events.on(“Resize”, function(size, oldsize, resizeSide) {
var misure = win.getSize();
var x11=misure.width-56;
x11=x11.toString()+“px”;
var y11=misure.height-156;
y11=y11.toString()+“px”;
document.getElementById(“appframe”).style.width=x11;
document.getElementById(“appframe”).style.height=y11;
});