EXT iframe 애플리케이션

1814 단어 iframe
    function IndexMagInfoFun(Url, width, height, title, Value) {
var IndexMagInfoWin = Ext.create('Ext.window.Window', {
layout: 'fit',
title: title,
width: width,
height: height,
modal: true,
plain: true,
y: 10,
autoScroll: true,
resizable: true,
maximizable: true,
bodyStyle: "padding:5px 0 0 5px",
items: {
xtype: "panel",
layout: 'fit',
border: false,
frame: false,
autoScroll: true,
html: "<iframe scrolling='yes'width='100%' height='100%' frameborder='0' src='" + Url + "?ID=" + Value + "'></iframe>"
},
buttonAlign: "center",
buttons: [{
text: " ",
iconCls: 'close',
handler: function () {
IndexMagInfoWin.close();
}
}]
});
IndexMagInfoWin.show();
};

EXT JS에서 Iframe을 이용하여 창을 열어 높이에 적응...보기 정보 편집기 불러오는 중...

좋은 웹페이지 즐겨찾기