Completed
Last Updated: 22 Jul 2019 14:11 by ADMIN
Martin
Created on: 14 Apr 2016 10:45
Category: Spreadsheet
Type: Feature Request
3
Add a tooltip to a Kendo UI spreadsheet cell
Ability to hover over a cell and see a tooltip
2 comments
ADMIN
Dimitar
Posted on: 22 Jul 2019 14:11
Hi,

Spreadsheet cell comments are released as a feature with R2 2019 (2019.2.514).

Regards,
Dimitar
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
James
Posted on: 08 Nov 2016 05:36
We implemented this using the cell.title attribute...

You need to hook into the MouseMove of the sheet

handleOnMouseMove = function (e, cell) {
    var activeElement = $(e.toElement);
    activeElement.attr('title', '123');   
}