Internet'te jQuery UI iletişim kutusunu otomatik olarak nasıl otomatikleştirebilirim Explorer?Otomatik boyut Internet Explorer'da jQuery UI iletişim kutusu
Bu kod Firefox'ta Tamam, ancak Internet'te Explorer'da değil.
$('#dialog2').dialog({
autoResize: true,
show: "clip",
hide: "clip",
height: 'auto',
width: 'auto',
autoOpen: false,
modal: true,
position: 'center',
draggable: true,
open: function (type, data) {
$(this).parent().appendTo("form");
},
buttons: { "close": function() { $(this).dialog("close"); document.getElementById("<%=btnnew.ClientID%>").click(); } }
});
HTML elementim bir DIV'dur.
jQuery ve jQuery UI'nin hangi sürümünü kullanıyorsunuz? –
jquery ui 1.8.5 JQuery 1.4.2 – Shahin