I wonder what the best way to make an entire tr clickable would be?
The most common (and only?) solution seems to be using JavaScript, by using onclick=\"javascript:
It's a hack but you can add this to your tr:
tr
onmouseover="window.status='http://bla.com/bla.htm'"
don't forget to style your fake links:
tr.clickable { cursor: hand; cursor: pointer; }