可以通过将参数e传递给内容的匿名函数来访问目标。
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
...
}
});
是否有可能在展会上实现同样的目标?上面的代码不起作用。