启用或禁用复选框上的qtip

时间:2013-10-11 06:38:12

标签: javascript jquery qtip qtip2

我使用asp.net mvc razor代码。 我使用qtip在鼠标悬停时给出一个节目弹出窗口。 我在设置页面中有一个复选框,用于启用/禁用qtip。

这是我的代码:

function tooltip(a) {
    Sapppid = document.getElementById("s" + a).textContent;
    Sapppid = Sapppid.replace("s", "");
    $.ajax({
        url: window.location.pathname + "Scheduler/getappointmentdetails",
        type: "POST",
        data: { sharedappid: Sapppid }
    })
    .success(function (result) {
        document.getElementById('ApptDetails').value = result;
    });

    $("#" + a).qtip({
        overwrite: false,
        content: {
            text: "...",
            button: 'Close',
            ajax: {
                url: window.location.pathname + "Scheduler/Eventdetails/" + Sapppid,
                type: 'Post',
                success: function (result) {} 
            } 
        },
        style: {
            classes: '',
            width: 500
        },
        position: {
            my: 'right bottom center',
            at: 'middle right center',
            target: $("#" + a)
        },
        show: {
            ready: true,
            solo: true
        },
        hide: {
            when: { event: 'mouseout unfocus' }, fixed: true, delay: 200
        }
    });   
}

我设计qtip来展示动态内容。我用的是qtip2。我找不到任何在网站上禁用或启用的文档。

这是我找到的唯一代码,但无法确定应用此位置。:

  

http://qtip2.com/api#api.disable

api.disable(true);

// Enable it again
api.disable(false);

2 个答案:

答案 0 :(得分:2)

将onclick事件附加到您的复选框,并将qtip功能中的禁用放在您要定位的元素上

代码示例:

$('.checkbox').on('click', function(){
    $('.dynamic').qtip('disable', true);
});

尝试一下,让我知道它是否适用于评论

答案 1 :(得分:0)

尝试这样的事情

    $('.checkbox').on('click', function(){
        var api = $('.dynamic').qtip('api');
        api.disable(true);
    });