Fix IE7 : cosmetic size of report in access

FIX IE7 : bug with infobulle
Improve infobulle with mouseover and mouseclick
Check browser version and refuse to work if using IE < 7
This commit is contained in:
Dany De Bontridder 2009-10-20 18:28:01 +00:00
parent 1bf3a0a77c
commit e1efdd7bb3
5 changed files with 57 additions and 6 deletions

View file

@ -779,7 +779,7 @@ class widget {
}
static function infobulle($p_comment){
$r='<A HREF="#" style="display:inline;color:black;background-color:yellow" onClick="showBulle(\''.$p_comment.'\')" onmouseout="hideBulle(0)">?</A>';
$r='<A HREF="#" style="display:inline;color:black;background-color:yellow" onmouseover="showBulle(\''.$p_comment.'\')" onClick="showBulle(\''.$p_comment.'\')" onmouseout="hideBulle(0)">?</A>';
return $r;
}