Make table rows clickable using javascript. Use this functionality in the top X lists and in the test results table

This commit is contained in:
Chris Morgan
2006-07-21 04:34:58 +00:00
committed by WineHQ
parent f73d9c0283
commit c726511204
5 changed files with 33 additions and 5 deletions

View File

@@ -18,3 +18,22 @@ function deleteURL(text, url) {
self.location = url;
}
}
function ChangeTrColor(tableRow, bHighLight, sHighlightColor, sInactiveColor)
{
if (bHighLight)
{
tableRow.style.backgroundColor = sHighlightColor;
tableRow.style.cursor = "hand";
}
else
{
tableRow.style.backgroundColor = sInactiveColor;
tableRow.style.cursor = "pointer";
}
}
function DoNav(sUrl)
{
document.location.href = sUrl;
}