Hallo,
leider klappt eine einfach Funktion, die ich mir gebaut habe nur im IE und nicht auf Chrome oer Safari.
Kennt jemand das Problem und kann mir helfen bitte? Danke
Den rowIndex habe ich aus einem Filter und genau diese Zeilen sollen halt anders formatiert werden....
Ich versteh es null und wäre für einen Ansatz dankbar
leider klappt eine einfach Funktion, die ich mir gebaut habe nur im IE und nicht auf Chrome oer Safari.
Kennt jemand das Problem und kann mir helfen bitte? Danke
Den rowIndex habe ich aus einem Filter und genau diese Zeilen sollen halt anders formatiert werden....
Code:
var tr = document.getElementById('table').rows;
td = document.getElementById("table").rows(rowIndex).cells;
for (var j = 0; j < td.length; ++j) {
td[j].style.fontWeight = 'bolder'
td[j].style.fontSize = 14
td[j].style.textDecoration = 'underline'
td[j].style.backgroundColor = 'red'
Ich versteh es null und wäre für einen Ansatz dankbar