Here is my source code:
Ext.create ('Ext.window.Window', {
id: 'edit_segtype_win',
title: 'msg',
layout: 'fit',
html: data,
modal: true,
resizable: false,
constrain: true
}). show (undefined, bind_ajax_success);
When I call show (...), the window will display without animation. I want to add some animation like fadein / fadeout / slidein / slideout. Can someone help me? Thanks!
source share