发布最新的jquery colorbox v1.4.14

时间:2013-04-19 07:12:55

标签: jquery fancybox colorbox

我们最近将jquery colorbox更新为最新版本v1.4.14。更新后,从颜色框中打开的jquery UI模态对话框/ Fancy Box中的字段(输入,选择)看起来像只读。我们无法编辑/输入模态对话框字段的任何文本。

以下是我们用于打开彩盒和幻灯箱(在彩盒内)的代码:

$.colorbox({ href: '/Contact/Save/' + Id, width: "1200px", height: "450px", title: 'Loan & Borrow ', overlayClose: false, escKey: false, onLoad: function () { $('#cboxClose').hide() }, onComplete: function () { $('#cboxClose').show() } });

$.fancybox({
        'width': 100,
        'height': 100,
        'transitionIn': 'elastic',
        'transitionOut': 'elastic',
        'speedIn': 600,
        'speedOut': 200,
        'overlayShow': true,
        'overlayOpacity': '0.9',
        'autoScale': false,
        'autoDimensions': false,
        'title': 'Quick Add',
        'titleShow': true,
        'titlePosition': 'over',
        'hideOnOverlayClick': false,
        'centerOnScroll': false,
        'href': '/Contact/_QuickAddLocation',
        'onComplete': function () {
            $("#fancybox-wrap").css({ 'top': '5px', 'bottom': 'auto' });
            $("#fancybox-content").css({ 'padding-top': '35px' });
        }
    });

它适用于jquery colorbox版本v1.3.19。我们有最新版本v1.4.14的解决方法吗?请建议。

0 个答案:

没有答案