07-07-2019, 09:40 PM
Standard HTML+JS only provides resize events for windows and frames. However Intraweb also resizes controls using the align functionality. (e.g. when a splitter is used)
There are a couple of places where I've embedded content that needs to be notified of resize so they can redraw themselves. I've got the following code in one such place:
That code works as expected when the browser is resized. However, when a splitter is used that causes the containing region to change size, that function will not be called.
Is there an IW event handler I can hook to to call this code when a region changes size?
Thanks!
There are a couple of places where I've embedded content that needs to be notified of resize so they can redraw themselves. I've got the following code in one such place:
Code:
window.resize(function(){
CurDgm.PanZoom.resize();
CurDgm.PanZoom.fit();
CurDgm.PanZoom.center();
});
That code works as expected when the browser is resized. However, when a splitter is used that causes the containing region to change size, that function will not be called.
Is there an IW event handler I can hook to to call this code when a region changes size?
Thanks!