Hi,
I have a TreeGrid.
I have used tooltip for every cell which shows the cell text.
But once I sort the field, tooltip does not appear.
How to fix this?
$('td span.tree-title').tooltip({
position: 'right',
trackMouse: true,
content:function(){
var cont = $(this).text();
return '<span style="color:#fff">' + cont + '</span>';
} ,
onShow: function(){
$(this).tooltip('tip').css({
backgroundColor: '#666',
borderColor: '#666'
});
},
});