Lukas .: Jquery: Auswahl von Checkboxen bei Change von Checkboxen

Beitrag lesen

Hi Felix,

doch!

Echt? Na gut, kann sein ;)

Wie bitte?! Was?? Jetzt nochmal zum Mitschreiben: Ich helfe Dir nur, wenn Du echten Code zeigst. Am liebsten per Link auf eine Testseite.

Vielleicht hab ich mich da ein wenig verwurschtelt. Mir gings nur darum, dass ich die "Check all" Checkbox in der nächsten Tabellenzeile haben wollte.

<table>
<th></th>
<tbody class='all_checkboxes'>
<tr>
<td>
Feld 1
</td>
<td>
<fieldset class='f_all'>
<legend class='c1'>Eintrag: c1</legend>
<input type=checkbox id="c1">
<input type=checkbox name="chboxName[c1][]" value="item1">1
<input type=checkbox name="chboxName[c1][]" value="item2">2
<input type=checkbox name="chboxName[c1][]" value="item3">3
<input type=checkbox name="chboxName[c1][]" value="item4">4
<input type=checkbox name="chboxName[c1][]" value="item5">5
<input type=checkbox name="chboxName[c1][]" value="item6">6
<input type=checkbox name="chboxName[c1][]" value="item7">7
</fieldset>
<fieldset class='f_all'>
<legend class='c2'>Eintrag: c2</legend>
<input type=checkbox id="c2">
<input type=checkbox name="chboxName[c2][]" value="item1">1
<input type=checkbox name="chboxName[c2][]" value="item2">2
<input type=checkbox name="chboxName[c2][]" value="item3">3
<input type=checkbox name="chboxName[c2][]" value="item4">4
<input type=checkbox name="chboxName[c2][]" value="item5">5
<input type=checkbox name="chboxName[c2][]" value="item6">6
<input type=checkbox name="chboxName[c2][]" value="item7">7
<input type=checkbox name="chboxName[c2][]" value="item8">8
</fieldset>
</td>
</tr>
<tr>
<td>
Alle markieren:
</td>
<td>
<input type=checkbox id="all_checkboxes">
</td>
</tr>
</tbody>
</table>

P.S: Da es sich um tabellarische Daten handelt, ist eine Tabelle schon gerechtfertigt.

Lukas