Entête flottante
Publié : 15 mars 2005, 17:49
Bonjour,
J'utilise une ligne flottante sur un tableau (la première). Sous IE, cela fonctionne parfaitement mais sous FF, la taille des cellules de la première ligne est tronquée !?
Si quelqu'un peut m'aider à résoudre ce problème. Merci.
J'utilise une ligne flottante sur un tableau (la première). Sous IE, cela fonctionne parfaitement mais sous FF, la taille des cellules de la première ligne est tronquée !?
Si quelqu'un peut m'aider à résoudre ce problème. Merci.
Code : Tout sélectionner
<table class="tableautitle" >
<script language="javascript">
var db, ie, op, strict, entete, inity;
ie = document.all ? 1 : 0;
op = window.opera ? 1 : 0;
strict = document.compatMode == "CSS1Compat" ? 1 : 0;
function enteteFlottante(id) {
db = ie&!op&&strict ? document.documentElement : document.body;
entete = document.getElementById(id);
entete.style.position = "absolute";
inity = entete.offsetTop;
var table_entete = document.getElementById("first_" + id);
table_entete.style.height = entete.offsetHeight - 2*entete.childNodes[0].offsetTop;
fixEntete();
}
function fixEntete() {
sy = ie ? db.scrollTop : pageYOffset;
y = entete.offsetTop;
dy = y-sy;
if (sy > inity) {
y = sy+parseInt(dy*.9);
} else {
y = inity;
}
entete.style.top = y+"px";
setTimeout('fixEntete()', 20);
}
window.onload = function(){ enteteFlottante("entete_piste.composantvisuel_dboracle_entite_liste") };
</script>
<tr id='entete_piste.composantvisuel_dboracle_entite_liste'><td><div>CODE</div></td><td><div>PAYS</div></td><td><div>LIBELLE</div></td><td><div>TYPE CODE</div></td><td>UNITE></td><td><div>NIVEAU</div></td></tr>
<tr id="first_entete_piste.composantvisuel_dboracle_entite_liste">
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr class="lignepaire" ><td><div>0161004</div></td><td><div>004</div></td><td><div>PERLE LAIT LIGNE COCO 4X110G</div></td><td><div>1</div></td><td><div>04</div></td><td><div>040401210</div></td></tr>
<tr class="ligneimpaire" ><td><div>0161007</div></td><td><div>004</div></td><td><div>YOP A BOIRE COCO 750 G.</div></td><td><div>1</div></td><td><div>04</div></td><td><div>040400807</div></td></tr>
.....
.....
....
</table>