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
500
Customize column header tooltip
posted

How to set up igGrid column header tooltip? is the solution from post http://es.infragistics.com/community/forums/p/66202/334681.aspx#334681 the only way?

Thanks,

Michael

Parents
No Data
Reply
  • 5
    posted

    Doesn't look like we have a solution yet for this. Here's another approach that I am using:

    function setHeaderTooltips() {
    $.each($(".ui-iggrid th.ui-iggrid-header"), function (indx, header) {

    //get header text as the default tooltip

    var tip = $(header).attr('aria-label');

    switch (tip) {
    case 'C/C Low':
    tip = 'Cash On Cash Low';
    break;

    //... etc. for any custom tooltips
    }

    //set the tooltip

    $(header).attr('title', tip);
    });

Children
No Data