I am using cellTooltip
property of colDef but that does not seems to be working.
$scope.gridOptions.columnDefs = [{ displayName: 'Test', field: '_test',
cellTooltip: function (row, col) { return row.entity._Number },
cellTemplate: '<div class="ui-grid-cell-contents" title="{{row.entity._Number}}"></div>'},
];
Any help would be appreciated.
You can add a tooltip to the column header simply by adding headerTooltip: 'Custom header string'
in the column definition.