Подсказка по кендо UI на шоу, цель доступа?
Цель доступна путем передачи аргумента 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
...
}
});
Можно ли добиться того же самого на шоу? Приведенный выше код не работает.
1 ответ
Решение
Вы всегда можете получить доступ к целевому элементу, вызвав tooltip.target ():
var toolTip = $('#grid').kendoTooltip({
filter: "td[role=gridcell]",
content: function (e) {
var target = e.target; // the element for which the tooltip is currently shown
return "Content is: " + target.text(); // use current element for content
},
show: function (e) {
var target = this.target(); // the element for which the tooltip is currently shown
if (target) {
console.log("now showing with content: ");
console.log(target.text());
}
}
}).data("kendoTooltip");
Посмотреть демо: http://jsfiddle.net/lhoeppner/mcpxj/