dialog - How to resize a DialogBox in GWT so that a FlexTable fits in? -
i want use flextable
in dialogbox
. size of dialogbox
should match size of flextable
. unfortunately, dialogbox
smaller, flextable
cut , parts of visible. there way automatically resize dialogbox
flextable
fits? (please note, flextable
not change while being displayed, there not automatic resizing necessary once shown on screen...)
did accomplish this?
i think found out wrong. in addition bryan's great answer might in such situations (though in mine there no change between automatic sizing , bryan's approach). found out when using animations, width of dialogbox
in gwt limited 400 px. when changing line
setanimationenabled(true);
to
setanimationenabled(false);
the sizing of dialogbox works fine. maybe helpful someone...
Comments
Post a Comment