Hello,
I am using EJ 2 version 16.4.0.44 (nuget package).
I have a grid that displays a ToolTip for one cell on each row. When I'm on the first row and the tooptip is shown and then I move my mouse up from the cell the tooltip doesn't hide.
function tooltip(args) {
if (args.column.field == "programName") {
new ej.popups.Tooltip({
content: args.data.programDescription.toString(),
opensOn: 'Hover'
},
args.cell);
}
}
How can I remove the ToolTip?
Thanks