with jquery UI dialog, is there anyway to have a max height and use 'auto' if its smaller

前端 未结 8 2299
抹茶落季
抹茶落季 2021-02-07 00:01

I want a dialog to have a max height setting but, if the content is smaller, then to shrink down to do what height = \'auto\' does. Is this possible in JQuery UI di

8条回答
  •  半阙折子戏
    2021-02-07 00:29

    I think you could work together with heightand maxHeight and fit the dialog height when your div content height < dialog maxheight. Do this when the dialog is open. Like this:

    $('#dialog').dialog({ autoOpen: false, maxHeight:400, height:400, buttons: { "Cancel": function () { $(this).dialog("close"); } }, open:function(){ var s = $('#contents').height(); var s2 = $(this).dialog( "option", "maxHeight" ); if(s < s2){ $(this).height(s); } } });

    try it changing the style="height:3000pxvalue: http://jsbin.com/iwecuf/2/edit

提交回复
热议问题