The target is accessible by passing the argument e to the anonymous function for content.
gridToolTipz = $('#grid').kendoTooltip({
filter: "td[role=gridcell]",
content: function (e) {
var target = e.target; // the element for which the tooltip is shown
...
},
show: function(e) {
var target = e.target; // the element for which the tooltip is shown
...
}
});
Is it possible to achieve the same thing on show? The above code doesn't work.