GSIxess
Messages postés2Date d'inscriptionvendredi 13 mai 2005StatutMembreDernière intervention21 octobre 2005
-
20 oct. 2005 à 17:00
GSIxess
Messages postés2Date d'inscriptionvendredi 13 mai 2005StatutMembreDernière intervention21 octobre 2005
-
21 oct. 2005 à 17:26
Bonojur à vous,
J'essai de mettre en place le même scripts que l'on trouve sur
PhpMyAdmin, utilisant la fonction 'setPointer()' pour la coloration des
lignes d'un Tableau suivant si on survol ou clique dessus.
Mon problème reste assez simple vous allez me dire, c'est que les ligne
de mon tableau sont tout simplement transparentent au lieu d'avoir des
couleurs !! :(
Voici le Code utilisé :
function setPointer(theRow, theAction, theDefaultColor, thePointerColor, theMarkColor)
{
var theCells = null;
// 1. Pointer and mark feature are disabled or the browser can't get the
// row -> exits
if ((thePointerColor '' && theMarkColor '')
|| typeof(theRow.style) == 'undefined') {
return false;
}
// 2. Gets the current row and exits if the browser can't get it
if (typeof(document.getElementsByTagName) != 'undefined') {
theCells = theRow.getElementsByTagName('td');
}
else if (typeof(theRow.cells) != 'undefined') {
theCells = theRow.cells;
}
else {
return false;
}
// 3. Gets the current color...
var rowCellsCnt = theCells.length;
var domDetect = null;
var currentColor = null;
var newColor = null;
// 3.1 ... with DOM compatible browsers except Opera that does not return