Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
120
Custom text for tooltip in iggrid
posted

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

Parents
No Data
Reply
  • 15320
    Verified Answer
    Offline posted

    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

Children
No Data