tutorial showcase services example gwt mgwt

showcase - cómo agregar MGWT Animation dentro de algún widget en lugar de RootPanel



gwt tutorial (1)

¿Has probado?

animationHelper.goTo(widget1, Animations.SLIDE_REVERSE);

Estoy haciendo animación en mgwt, pero el problema es cuando animo algún widget. ese widget viene en el nivel superior ( RootPanel ) sobre todos los widgets.

código:

VerticalPanel vpnlMain = new VerticalPanel(); vpnlMain.add(widget1); vpnlMain.add(animationHelper); animationHelper.goTo(widget2, Animations.SLIDE); previousImageButton.addTapHandler(new TapHandler() { @Override public void onTap(TapEvent event) { animationHelper.goTo(vpnlMain, Animations.SLIDE_REVERSE); } });

Todo funciona, Widget se anima, pero viene sobre todos los otros widgets, en el nivel de raíz. Incluso mis encabezados desaparecieron.

Mientras que espero que el widget animado entre en vpnlMain .