You can do
{ "sTitle": "...", ...
'fnCreatedCell': function(nTd, sData, oData, iRow, iCol) {
nTd.title = 'Some more information';
}
}
in the column configuration. You can easily use all row data. Because of this, this should not be:
oTable.$('td').tooltip( {
"delay": 0,
"track": true,
"fade": 100
} );
source
share