Three part example:
1) cell hover highlight
2) row hover highlight
3) column hover highlight
// cell highlighting
table.delegate('hover',
function (e) { e.currentTarget.addClass('highlight'); },
function (e) { e.currentTarget.removeClass('highlight'); },
'.yui3-datatable-cell');
Change the selector for row highlighting. The column highlight would get the column name, then apply a class to the boundingBox, allowing the highlight to be applied by css cascade.
Three part example: 1) cell hover highlight 2) row hover highlight 3) column hover highlight
Change the selector for row highlighting. The column highlight would get the column name, then apply a class to the boundingBox, allowing the highlight to be applied by css cascade.