bootstrap Tooltip Stays Open(IE,Firefox)

时间:2015-10-07 14:48:00

标签: javascript jquery html twitter-bootstrap

解决。代码将反映变化(并有评论)

我将首先尝试简洁地描述问题,然后提供详细信息。

当我将鼠标悬停在表格中的单个列下的表格数据元素上时,我使用bootstrap的工具提示来显示一些文本。要访问此表,可以通过单击下拉列表下的项目导航到该表。选择下拉项后,如果您正在将鼠标悬停在具有工具提示的表元素上,因为正在呈现表/页面,则工具提示将保持打开/卡在页面上(在 IE < / strong>和 Firefox 仅限。)

以下是呈现表格并生成工具提示的JavaScript。我使用KendoGrid生成并跟踪从数据库中提取的信息。 jQuery,bootstrap,knockout和Kendo是这个网页前端的基础。

有什么我可以重新格式化来解决这个问题吗?或者任何地方的已知解决方法?所有输入都表示赞赏。谢谢!

的JavaScript

var createGrid = function () {
    $('#AvailableAttachments').html('').kendoGrid({
        columns: self.AvailableColumns(),
        dataSource: {
            data: [],
            sort: self.Type() == 'Labor' ? { field: 'Description', dir: 'asc' } : { field: 'ReferenceNumber', dir: 'asc' }
        },
        selectable: true,
        sortable: true,
        scrollable: true,
        resizable: true,
        change: self.AttachmentGridChange,
        dataBound: self.availableGridDataBound
    });
};

var updateGrid = function () {
    /*Destroy all previous table's tooltips*/
    $.each($('#AvailableAttachments').data('kendoGrid').table.find('tr'), function (i, row) {
        $(row).find('td.hoverDescription').tooltip('destroy');
    });

    createGrid();
    var selectedCategory = {
        /*Grab some parameters*/
    };

    app.ajaxLoadingPanel = '#AvailableAttachments .k-grid-content';
    $.getJSON(app.baseUrl + self.Type.peek() + 'Attachment/Get', selectedCategory, function (data) {
        var oldSort = $('#AvailableAttachments').data('kendoGrid').dataSource._sort;
        var newDS = new kendo.data.DataSource();
        newDS.data(data);
        if (typeof oldSort != 'undefined' && oldSort.length > 0) {
            newDS.sort(oldSort[0]);
        }
        $('#AvailableAttachments').data('kendoGrid').setDataSource(newDS);
        filterFavorites();
        $('#btnEditPart').prop('disabled', true);
        $('#btnDeletePart').prop('disabled', true);

        $.each($('#AvailableAttachments').data('kendoGrid').table.find('tr'), function (i, row) {
            generateToolTip(row);
        });
    });
}

function generateToolTip(row) {

    var description = /*Do some parsing to get the information to display*/
    ...
    ...
    $(row).find('td.hoverDescription').attr('data-original-title', description);
    $(row).find('td.hoverDescription').tooltip({ container: '#AttDescriptionToolTip', placement: 'left', html: true, opacity: 0.7 });
}

0 个答案:

没有答案