I like to have a dialog modal with external url link, and inside the dialog is allowed to save without closing the dialog. I not sure this is the best way to do it but at least when button save the dialog modal not close. So in order for me to click save button in the modal popup without closing the dialog, i use together with Iframe, but there are 2 problems:
- the css is different if run without
//dialog.load(url); - the iframe can't auto resize.
So anyone got solution for this?
$('.popupEdit').click(function () {
var url = this.href;
var dialog = $('<div id="pEdit"><iframe id="iframedit" src="' + url + '" style="width:1200px;height:490px;" frameborder="0" ></iframe></div>').appendTo('body');
//var dialog = $('<iframe src="' + url + '" style="width:1200px;height:490px;"></iframe>').appendTo('body');
//dialog.load(url);
dialog.dialog({
autoResize: true,
height: 'auto',
width: 'auto',
modal: true,
position: 'center',
draggable: true,
open: function (type, data) { $(this).parent().appendTo("form"); },
close: function (type, data) { $("[id$=btnSearch]").click(); }
});