184185186187188189190191192193194
} if (autoHide) { preview.remove(); } if (isAnimate()) { el().fadeOut(new FxConfig(new Listener<FxEvent>() { public void handleEvent(FxEvent fe) { afterHide(); } })); } else {
474475476477478479480481482483484
if (autoHide) { preview.add(); } if (animate) { el().fadeIn(new FxConfig(new Listener<FxEvent>() { public void handleEvent(FxEvent fe) { afterShow(); } })); } else {
896897898899900901902903904905906
protected void onCollapse() { if (animCollapse) { animating = true; addStyleName(baseStyle + "-animated"); bwrap.slideOut(Direction.UP, new FxConfig(300, new Listener<FxEvent>() { public void handleEvent(FxEvent fe) { afterCollapse(); } })); } else {
921922923924925926927928929930931
protected void onExpand() { if (animCollapse) { animating = true; addStyleName(baseStyle + "-animated"); bwrap.slideIn(Direction.DOWN, new FxConfig(300, new Listener<FxEvent>() { public void handleEvent(FxEvent fe) { afterExpand(); } })); } else {
694695696697698699700701702703704
setValue(d); } } private void hideMonthPicker() { monthPicker.slideOut(Direction.UP, new FxConfig(300, new Listener<FxEvent>() { public void handleEvent(FxEvent ce) { monthPicker.setVisible(false); } })); }
365366367368369370371372373374375
} te.cancelBubble(); } private void animCollapse() { containerEl.slideOut(Direction.UP, new FxConfig(animDuration, new Listener<FxEvent>() { public void handleEvent(FxEvent fe) { afterCollapse(); } }));
375376377378379380381382383384385
})); item.tree.disableEvents(true); } private void animExpand() { containerEl.slideIn(Direction.DOWN, new FxConfig(animDuration, new Listener<FxEvent>() { public void handleEvent(FxEvent fe) { afterExpand(); } }));
985986987988989990991992993994995