我需要在Extjs Popup窗口中弹出一个aspx页面。对于popup我正在使用Ext.Window
。
有人可以帮助我如何使用Ext.Window
弹出Aspx页面吗?
先谢谢。
答案 0 :(得分:3)
您可以在窗口中添加iframe
。以下是我最近做过的一个例子:
Ext.define('App.view.myWindow', {
extend: 'Ext.window.Window',
title: 'My Window',
xtype:'myWindow',
itemId: 'myWindow',
width: 1500,
height:800,
items: [{
xtype: 'panel',
layout: {
type: 'hbox',
align: 'stretch'
},
items: [{
xtype: 'box',
itemId: 'iFrameInWindow',
title: 'IFrame',
autoEl: {
tag: 'iframe',
src: 'about:blank'
},
flex: 1
}]
}]
});