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