I\'m trying to add custom hovertext (like a tooltip), to the column headers in a KendoUI grid. The text should be specific to each column and ideally not displayed on anything b
For anyone attempting to do this with Kendo UI MVC it can be achieved by using the following logic:
On the grids DataBound
event create a JavaScript
function to handle the databound.
Within that JavaScript
function add the following code (for my example I've named my function createToolTip()
function createToolTip() {
$("tr > th").kendoTooltip({
position: "top"
});
}
This will create a tool tip to display on the grids header with the position of the tool tip above the header.