7

我有一个 jquery 对话框。我在对话框中显示一个 asp.net gridview。我希望对话框的大小根据网格视图的大小而改变。

有一个按钮,单击时会显示对话框。

我想设置对话框的大小,使 gridview 完全适合它。

   I have my javascript code below : 



 $("#ViewModalPopup").dialog({
                height: 800px,
                scrollable: true,
                width: 800,
                modal: true

            });

这里#ViewModalPopup 是包含模态弹出窗口的div。

我尝试实现以下逻辑来根据 div 的大小调整对话框的高度:

var maxHeight = 600;
            var currentHeight = $('#ViewModalPopup').height();

if (currentHeight < maxHeight) {
                var desiredHeight = currentHeight
                }
            else
            {
                var desiredHeight = maxHeight;
                }

  $("#ViewModalPopup").dialog({
                    height: desiredheight,
                    scrollable: true,
                    width: 800,
                    modal: true

                });

但它不能作为

var currentHeight = $('#ViewModalPopup').height();

从第二个按钮开始单击开始为空。

有什么办法可以动态改变对话框的大小吗?

4

2 回答 2

9

设置为

 $("#ViewModalPopupDiv1").dialog("option", "maxHeight", 600);

API

于 2013-07-29T14:43:26.910 回答
0
/* set dynamic height of modal popup and scroll according to window height */
function setModalMaxHeight(element) {
    this.$element = $(element);
    this.$content = this.$element.find('.modal-content');
    var borderWidth = this.$content.outerHeight() - this.$content.innerHeight();
    var dialogMargin = $(window).width() < 768 ? 20 : 60;
    var contentHeight = $(window).height() - (dialogMargin + borderWidth);
    var headerHeight = this.$element.find('.modal-header').outerHeight() || 0;
    var footerHeight = this.$element.find('.modal-footer').outerHeight() || 0;
    var maxHeight = contentHeight - (headerHeight + footerHeight);

    this.$content.css({
        'overflow': 'hidden'
    });

    this.$element.find('.modal-body').css({
        'max-height': maxHeight,
        'overflow-y': 'auto'
    });
}
$('.modal').on('show.bs.modal', function () {
    $(this).show();
    setModalMaxHeight(this);
});
$(window).resize(function () {
    if ($('.modal.in').length != 0) {
        setModalMaxHeight($('.modal.in'));
    }
});
于 2018-08-01T07:17:28.213 回答