I have a kendo grid and I am hiding the top row showing all the headers. I am doing this to give it a cleaner appearance and the users should know instantly the data in each column after some use.
I want to add the column names in the tooltip of each cell in case a new user comes in, they can hover over the data and see the column name.
I have the code below but I need to know how to target the column name.
myGrid.kendoTooltip({
filter: "td",
content: function (e) {
var target = e.target;
return $(target).text();
}
});