How can I add a title attribute (tooltip) to a cell in the grid?
New DiscussionI’m using Knockout JS and I have an additional model property ‘comments’ that I want to display on hover of a row’s cell.
Is there a nice way I can do this without using JavaScript to retrospectively apply the title to cell each after the grid is rendered?
I’m using version 13.1.20131.2143 and I’m binding my grid using knockout JS:
<table id=”scenarioGrid” style=”table-layout: auto !important” data-bind=”
igGrid: {
dataSource: scenarios,
primaryKey: ‘id’,
features: [{
name: ‘Updating’,
editMode: ‘none’,
enableAddRow: false,
enableDeleteRow: false
}],
autoGenerateColumns: false,
columns: [
{ key: ‘id’, headerText: ‘Scenario ID’, width: 0, hidden: true, dataType: ‘number’ },
{ key: ‘description’, headerText: ‘Description’, width: ‘auto’, dataType: ‘string’ },
{ key: ‘createdBy’, headerText: ‘Created By’, width: 120, dataType: ‘string’ },
{ key: ‘created’, headerText: ”, width: 90, dataType: ‘date’ },
{ key: ‘lastModifiedBy’, headerText: ‘Last Modified By’, width: 120, dataType: ‘string’ },
{ key: ‘lastModified’, headerText: ”, width: 90, dataType: ‘date’, format: ‘date’ },
{ key: ‘options’, headerText: ”, width: 60, dataType: ‘string’, template: optionsTemplate }
]
}”>
</table>