ExtJs Window 显示 HTML
var win = new Ext.Window({
title: 'My Window',
width: 640,
height: 400,
preventBodyReset: true,
html: 'This should be the way you expect it!
'
});
win.show();
var win = new Ext.Window({
title: 'My Window',
width: 640,
height: 400,
preventBodyReset: true,
html: 'This should be the way you expect it!
'
});
win.show();