jQWidgets Forums

jQuery UI Widgets Forums Grid Remove tooltip for checkbox column

This topic contains 2 replies, has 2 voices, and was last updated by  rskbuvan 12 years, 1 month ago.

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
  • Remove tooltip for checkbox column #20930

    rskbuvan
    Spectator

    In my grid, I’ve a dedicated column for checkbox and I’m getting a tooltip but it shows the wrong boolean value. Also, tooltip is coming only for maximum of two to three checkboxes.

    So I would like to remove tooltips only for a checkbox column.

    I applied the generic property “enabletooltips: true,” for grid and “enabletooltips: false” for checkbox column but it doesn’t workout.

    Anyone help me on this.

    Remove tooltip for checkbox column #20931

    Peter Stoev
    Keymaster
    Remove tooltip for checkbox column #20994

    rskbuvan
    Spectator

    I tried that rendered callbak function but it doesn’t work out. When I debugged the code, the title is getting added to its parent not for the checkbox div with the class name “jqx-checkbox-default“. So the below code is not removing the tooltip.

    rendered: function () {
    $(“.jqx-checkbox-default”).attr(“title”, “”);
    }

    If I set the default property as “enabletooltips: true” and “enabletooltips:false” for that checkbox column is also not working. Below code is for example,

    $(“#jqxgrid”).jqxGrid(
    {
    enabletooltips: true,
    columns: [
    {
    text: ”, menu: false, sortable: false,
    datafield: ‘CheckRow’, columntype: ‘checkbox’, width: ‘5%’,filterable: false,enabletooltips: false,
    renderer: function () {
    $(“.jqx-checkbox-default”).attr(“title”, “”);
    }
    }]
    });

    Please help me.

    Regards,
    \_rssb

Viewing 3 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic.