Re: [gwt-contrib] Re: LayoutImplIE6 and onResize()

2012-01-06 Thread Patrick M. Tucker
Try the following modifications to DockLayoutPanel : Add this somewhere in the class: AnimationCallback animationCallback = new AnimationCallback () { @Override public void onAnimationComplete () { System.out.println("\r\nAnimation complete!\r\n"); onResize(); }

Re: [gwt-contrib] Re: LayoutImplIE6 and onResize()

2010-03-31 Thread John Patterson
On 31 Mar 2010, at 18:59, Joel Webber wrote: John, Sorry for the slow response -- I've had a browser window open for several days to respond, but I keep getting pulled off onto other things. Ha ha! I know exactly how it is. It sounds like this is indeed an ordering bug. It's hard to be

Re: [gwt-contrib] Re: LayoutImplIE6 and onResize()

2010-03-31 Thread Joel Webber
John, Sorry for the slow response -- I've had a browser window open for several days to respond, but I keep getting pulled off onto other things. It sounds like this is indeed an ordering bug. It's hard to be sure precisely when IE's going to call onresize() (onmove() and onresize() are obscure n

[gwt-contrib] Re: LayoutImplIE6 and onResize()

2010-03-31 Thread jd
Does anyone think this is a bug? Or is it expected behaviour? On Mar 23, 10:40 pm, jd wrote: > Something else related to this problem:  when a DockLayoutPanel is > animated to resize its children, onResize() is called *before* the > resize but my child component was expecting to examine its new

[gwt-contrib] Re: LayoutImplIE6 and onResize()

2010-03-23 Thread jd
Something else related to this problem: when a DockLayoutPanel is animated to resize its children, onResize() is called *before* the resize but my child component was expecting to examine its new size. The JavaDoc for onResize says "This method must be called whenever the implementor's size has b