Нашли обходной путь, используя библиотеку qTip, добавив класс hasToolTip к тегу, как показано ниже
flowNote = '<td style="border:none; text-align:right;" class="text_regular tint_red" >' +
'<span class="hasToolTip"><i class="fa fa-comment-o" aria-hidden="true"></i></span>' +
'<div class="hidden text_medium"> <span class="text_medium">'+item.flow_note+'</span></div>' +
'</td>';
, а затем с помощью jQuery я сделал
$("#jsGrid").on('mouseover', '.hasToolTip', function(event) {
$(this).qtip({
content: {
text: $(this).next('div').html()
},
hide: {
event: 'click unfocus mouseout',
effect: function(offset) {
$(this).slideUp(100);
}
},
show: {
solo: true,
event: 'mouseover',
ready: true,
target: $(this),
effect: function(offset) {
$(this).slideDown(50);
}
},
position: {
my: 'center left',
at: 'center right',
target: $(this),
//viewport: $(window),
adjust: {
x: 5,
y: 0,
resize: true
}
},
style: {
classes: 'tooltip qtip-rounded',
tip: { // Requires Tips plugin
corner: true, // Use position.my by default
mimic: false, // Don't mimic a particular corner
width: 8,
height: 8,
border: true, // Detect border from tooltip style
offset: 0 // Do not apply an offset from corner
}
}
}, event);
});