Sencha iframe으로 팝업 띄우기
2025. 1. 21. 23:26ㆍJavascript/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();
'Javascript > Sencha' 카테고리의 다른 글
Sencha 팝업 내용 html로 꾸미기 (0) | 2025.01.21 |
---|---|
Sencha chart의 line 클릭시 팝업 띄우기 (0) | 2025.01.21 |
Sencha store 정보 가져오기 (0) | 2025.01.21 |
Sencha 팝업 호출시 get방식으로 파라메터 전달 (0) | 2025.01.21 |
Sencha callback 함수 샘플 (0) | 2025.01.21 |