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