Hi, I would like to know if there is a way to get a sql db column MS_Description as a column name tooltip from the standard object used to describe a grid element:
The ContentHandler of the Tooltip will execute a JavaScript function ("getRatingTooltip" in the example). In the function handler, get and return the needed property of the object. It will be set as a Tooltip out of the box. The property doesn't need to be visible in the Grid by default. Here is an example of the function handler:
functiongetRatingTooltip(e) {
var dataItem = $("#grid").data("kendoGrid").dataItem(e.target.closest("tr"));
var content = dataItem.ShipName;
return content;
}
Find attached a sample project with the needed implementations included.
After making the needed tests locally, let me know if further assistance is needed.
Kind Regards,
Anton Mironov
Progress Telerik
Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.