2014-03-19 131 views

回答

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 
     }] 
    }] 
}); 
相關問題