87,994
社区成员




Ext.create('Ext.container.Viewport', {
layout: 'border',
items: [panel, Grid],
renderTo: Ext.getBody()
});
Ext.create('Ext.container.Viewport', {
layout: "border",
items: [
{
id: "p_test",
xtype: 'panel',
title: "呵呵呵呵",
html: "<a>1111111111111111111111111111111111</a>"
}
],
renderTo: 'form'
//这里有疑问,如果是form的话,不能完全填充,如果是body的话,跑A页面的body上了
});
var winObj = Ext.create('Ext.window.Window', {
id: "formWin",
width: 500,
height: 300,
maximizable: true,
modal: true,
loader: {
loadMask: {
showMask: true,
msg: "正在测试… Hold……"
},
renderer: "html ",
scripts: true,
autoLoad: true,
url: "B.aspx"
},
title: "My First Extjs 4 window"
});
winObj.show();