Closed GoogleCodeExporter closed 9 years ago
Figured out the issue. DockLayoutPanel makes ample use of overflow: hidden in
it's CSS. I just had to override starting with the widget I placed in the panel
like so:
Element parentElement = scrollPanel.getElement().getParentElement();
parentElement.getStyle().setOverflow( Style.Overflow.VISIBLE );
parentElement = parentElement.getParentElement().getParentElement();
parentElement.getStyle().setOverflow( Style.Overflow.VISIBLE );
Original comment by t...@snellfamily.com
on 23 Dec 2011 at 4:16
Or maybe use helper and appendTo options :
dragOptions.setHelper(HelperType.CLONE);
dragOptions.setAppendTo("body");
By appending the drag helper to the body, you avoid the problem of the
overflow:hidden of the parent container,
Original comment by julien.d...@gmail.com
on 23 Dec 2011 at 7:34
We had similar problem with TabLayoutPanel, using appendTo fixed that too.
Thanks :-)
Original comment by partha.g...@gmail.com
on 13 Mar 2012 at 12:04
Original comment by julien.d...@gmail.com
on 17 Mar 2012 at 6:30
Original issue reported on code.google.com by
t...@snellfamily.com
on 23 Dec 2011 at 1:36