ASP.Net Web ページで、別のページをポップアップする div と iFrame を作成しました。やりたいことは、ダイアログ自体のボタンからダイアログの幅を変更することです...
出来ますか?ありがとう...
ASP.Net Web ページで、別のページをポップアップする div と iFrame を作成しました。やりたいことは、ダイアログ自体のボタンからダイアログの幅を変更することです...
出来ますか?ありがとう...
var dlgContainer = $('#container');
dlgContainer.dialog({
.
.
open : function(){
dlgContainer.find('#width-change-button').on('click' , function(){
dialogBox.closest('.ui-dialog').css('width', '700px'); //or use .width()
});
});
はい、iframe 内から iframe の外側にあるものを選択するには、次のようにします。
$("#WhateverIWantOutsideIframe", window.parent.document);
したがって、iframe内から、これを行います
$('#InsideButton').on('click',function(){
$("#DialogOutsideIframe", window.parent.document).width(9000);
});