Here is My sourcecode:
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 show without any animation. I want to add some animation,such as fadein/fadeout/slidein/slideout. Can somebody help me? Thank you!