jQuery Ui Dialog width:auto Ie8 -
i have jquery ui dialog below code :
$("#roleproperty").dialog({ autoresize: true, show: "clip", hide: "blind", height: 'auto', width: 'auto', autoopen: false, modal: true, position: 'top', draggable: true, title: "مشخصات نقش", open: function (type, data) { $(this).parent().appendto("form"); }, buttons: { "بستن": function () { $(this).dialog("close"); document.getelementbyid("<%=btncancel.clientid%>").click(); } } });
but property width:auto works incorrectly in ie8. works right in firefox. jquery ui version 1.8.5 jquery version 1.5
-additional infromation. opening dialog server side (after asp.net postback)
make sure not having issue ie compatibility mode. see broken page icon refresh button?
if use following in :
Comments
Post a Comment