I'm having an issue with the kendogrid and locked columns. When I try to add the tooltip on a locked column it nevers shows. I have used the filer setting to do it,
$("#gridDataInput").kendoTooltip({ filter: "td:nth-child(2)", position: "right", content: function(e){ debugger var dataItem = $("#gridDataInput").data("kendoGrid").dataItem(e.target.closest("tr")); var content = dataItem.Messages; return content; } }).data("kendoTooltip");
When the column is not locked everything is just fine, as soon as I lock it, the tooltip is never displayed.
I've been stuck on that issue for a couple of day now, and even googleing is of no help. any suggestions anyone?
Thank you