cow
Mitglied
Hi @ all
ich hätte da gerne nochmal ein Problem
Und zwar habe ich ja mit den Div eine Dynamische Tabelle erstellt. Was eher Suboptimal leider war. Nun komme ich mal über eine andere Schiene . Aber hier hab ich auch wieder ein kleines Problem.
Js Code:
Mit dem Code kann ich mehrere Zeilen erstellen. Nur leider Klappt er mir beim Checken der Boxen immer nur beim Letzt Hinzugefügten Element die Text Felder Dran.
mein Html code =)
Und das zweite wäre die Function delRow(), ist bei mir noch relativ leer weil ich ganz ehrlich noch nicht den Großen plan von Js habe : ), hat jemand ne Idee denk Ansatz für mich
Über nochmals so gute und nette Hilfe wie das letzte mal würde ich mich freuen
Gruß The Cow
ich hätte da gerne nochmal ein Problem
Und zwar habe ich ja mit den Div eine Dynamische Tabelle erstellt. Was eher Suboptimal leider war. Nun komme ich mal über eine andere Schiene . Aber hier hab ich auch wieder ein kleines Problem.
Js Code:
Code:
function addRow()
{
$res = document.getElementById($tblname);
$config.anzrows++;
zeile = $config.anzrows;
tcont=document.createElement('tr');
td=document.createElement('td');
zeile = $config.anzrows;
td.innerHTML='Zeile: '+$config.anzrows;
tcont.appendChild(td);
td=document.createElement('td');
td.innerHTML='<input type="checkbox" name="n" onclick = "return felder(tcont)">Netz<br><input type="checkbox" name="h" onclick = "felder(tcont)">Host<br><input type="checkbox" name="s" onclick = "felder(tcont)">Solsoft-Gruppe';
tcont.appendChild(td);
$res.appendChild(tcont);
}
function felder(tcont)
{
td=document.createElement('td');
td=document.createElement('td');
td.innerHTML='<textarea name="net" cols="30" rows="3" onclick= ""></textarea> <textarea name="bsch" cols="30" rows="3" onclick= ""></textarea> ';
tcont.appendChild(td);
td=document.createElement('td');
td.innerHTML='<input type="checkbox" name="dev"> DEV<br> <input type="checkbox" name="test"> TEST<br> <input type="checkbox" name="pre"> PRELIVE<br> <input type="checkbox" name="live"> LIVE ';
tcont.appendChild(td);
tcont.appendChild(td);
}
Mit dem Code kann ich mehrere Zeilen erstellen. Nur leider Klappt er mir beim Checken der Boxen immer nur beim Letzt Hinzugefügten Element die Text Felder Dran.
mein Html code =)
HTML:
<body onload="addRow();">
<table>
<thead id = "tablehead" ></thead>
<tbody id = "table" >
</tbody>
</table>
<input type="button" value="+" onclick="addRow();" />
<input type="button" onclick="delRow();" value ="-"/>
</body>
</html>
Und das zweite wäre die Function delRow(), ist bei mir noch relativ leer weil ich ganz ehrlich noch nicht den Großen plan von Js habe : ), hat jemand ne Idee denk Ansatz für mich
Über nochmals so gute und nette Hilfe wie das letzte mal würde ich mich freuen
Gruß The Cow