Change the initalizetooltip function in balloontip.js to following:
Code:
function initalizetooltip() {
var all_links = document.getElementsByTagName("a");
if (enablearrowhead && !document.getElementById("arrowhead")) {
tiparrow = document.createElement("img");
tiparrow.setAttribute("src", arrowheadimg[0]);
tiparrow.setAttribute("id", "arrowhead");
document.body.appendChild(tiparrow);
}
for (var i = 0; i < all_links.length; i++) {
if (reltoelement(all_links[i]) && all_links[i].onmouseover == null) {
all_links[i].onmouseover = function (e) {
var evtobj = window.event ? window.event : e;
displayballoontip(this, evtobj);
};
all_links[i].onmouseout = delayhidemenu;
}
}
}
And every time you reload the contents of the table call this function.
Bookmarks