Extjs
Ext.Panel 内に iframe があり、パネルは Ext.Window 内にあります。
iframe のコンテンツが変更されたときにウィンドウの高さを自動にする方法
コードを見てください:
var filePanel = new Ext.Panel({
autoHeight: true
});
var fileUploadWindow = new Ext.Window({
modal: true,
autoHeight: true,
title: 'File Upload',
closable: true,
draggable: true,
autoDestroy: false,
width: 570,
items: [filePanel],
shadow: true,
buttons: [{
xtype: 'button',
text: 'Close',
handler: function (button) {
fileUploadWindow.hide();
fileStore.reload();
}
}]
});
filePanel.add(new Ext.Panel({
html: '<iframe src="../shared/Upload.aspx?_key=' + sskey +
'&_id=' + wkId + '" style="width:550px; border:none;"></iframe>'
}));
誰かが私を助けることができますか??