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

前端 未结 8 2300
抹茶落季
抹茶落季 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:33

    Let me throw my 2 cents in.

    Create a CSS Style like so

    .d-maxheight {  max-height:200px; }
    

    Now simply tell the dialog to apply that class to the dialog

    $(document).ready(function(){
      $(d).dialog({
        dialogClass: 'd-maxheight',
        height:400
      });
    });
    

    Here is an example in jsbin

    As long as you content is less than the max height it will automatically size. If not the max height will take effect and you will get a scroll bar inside the dialog.

提交回复
热议问题