Jquery模式打开我页面的页脚

时间:2014-01-27 18:22:18

标签: css modal-dialog footer

当我打开我的模态并且它的内容很棒,并且它的高度很大时,在我的页脚顶部打开,你怎么不打开页脚但是让我的内容(页面的主体)自动增加?

见下文:

Error

    $('#lnkAdicionar').live("click", function () {
        $('#dialogClienteFornecedor').dialog({
            width: 608,
            resizable: false,
            title: 'Novo Cliente e Fornecedor',
            modal: true,
            draggable: false,
            open: function (event, ui) {
                $.ajax({
                    url: '@Url.Action("CadastroClienteFornecedor")',
                    type: 'GET',
                    cache: false,
                    context: this,
                    success: function (result) {
                        $(this).html(result);
                    },
                });

            },
            close: function (event, ui) {
                $('#dialogClienteFornecedor').empty();
            },
            position: {
                my: 'top',
                at: 'top',
                of: $('#divMenu')
            }
        });
    });
});

0 个答案:

没有答案