Sencha iframe으로 팝업 띄우기

2025. 1. 21. 23:26Javascript/Sencha

Ext.create('Ext.window.Window', {
    title: 'Details',
    modal: true,
    width: 800,
    height: 600,
    layout: 'fit',
    items: [
        {
            xtype: 'component',
            autoEl: {
                tag: 'iframe',
                src: url
            }
        }
    ]
}).show();