Hi,
I would like to just have a simple message "Click to Edit" for a tooltip in my grid when you hover over a row. However, the current tooltip feature just repeats the same text that is in the cell or they only exist when adding, deleting, done, or cancel. The reason for this is because I want to make it clear to users when hovering over a row, that you click to edit which is very unclear.
Thanks
Hello Edward,
I would suggest you to attach to tooltipShowing event and change the tooltip argument to show the desired text, for instance:
tooltipShowing : function(evt, args) { args.tooltip = "custom text"; }
Is this what you're looking for?
Regards,Tsanna