1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
nl = document.createElement('tr');
nr1 = document.createElement('td');
nr2 = document.createElement('td');
lien = document.createElement('a');
lien.innerHTML = '".$champs['CHEMIN_DOCUMENT']."';
lien.setAttribute(\"href\", \"//Mercure/RD/GP-V40/GED/".$champs['CHEMIN_DOCUMENT']."\");
nr2.innerHTML = '".$champs['FORMAT']."';
nr1.style.backgroundColor = 'white';
nr2.style.backgroundColor = 'white';
nr1.setAttribute(\"onmouseover\", \"this.style.backgroundColor = '#DDDDDD'\");
nl.appendChild(nr1);
nl.appendChild(nr2);
nr1.appendChild(lien);
document.getElementById('table_pces_jointes').appendChild(nl); |