mleibman / SlickGrid

A lightning fast JavaScript grid/spreadsheet
http://wiki.github.com/mleibman/SlickGrid
MIT License
6.82k stars 1.98k forks source link

slick grid autotooltips plugin on edited cell #1047

Open ra00l opened 9 years ago

ra00l commented 9 years ago

When you have a more complicated HTML, like in my case, I don't want to have the tooltip on the editing column. So, to disable it, I changed the source of the autotooltip plugin to not show it on edited cell.

On line 50 (handleMouseEnter method), after declaration of $node, I added:

if($node.hasClass('editable')) return;