Hi! I'm working on my first character sheet for a german RPG and am encountering a strange behaviour of a repeating section (or, to be honest, with all my repeating sections). When I click on the "add"-button to add two <td>-elements, each filled with two <input>-elements, sometimes the elements are added - and sometimes not. When they are not, the "blink" (the appear for a short time) and then disappear as if the were deleted. I've tried many things and am working on this since hours, but don't find the answer to this. Whenever I copy a repeating section that do the same from another character sheet, they work as intended, but than something terrible seems to go wrong, because when I make the changes I want to do to the copied original repeating section (e.g. from the great Pathfinder sheet), they begin to stuck again. It's weird because there doesn't seem to be a pattern. Sometimes I can add 7 oder 8 elements properly, sometimes (after reloading the sheet) the first repeating section I want to add just blinks and vanished. I can click on "add" after that and then the section gets added, but I may encounter the same problem with the next click on "add". For example the following code (from the pathfinder sheet) works perfectly fine: <fieldset class="repeating_weapons">
<table cellpadding="0" cellspacing="0">
<tr>
<td colspan="3" class="sheet-statlabel-big" style="font-size: 1.5em; width: 260px;">Weapon</td>
<td class="sheet-statlabel" style="width: 110px;">Attack Bonus</td>
<td class="sheet-statlabel" style="width: 100px;">Critical</td>
</tr>
</table>
</fieldset>
But my actual code (following the same principle) doesn't: <fieldset class="repeating_Ressources">
<table cellpadding="0" cellspacing="0">
<tr>
<td><input type="text" name="attr_ressourcenames" style="width: 15em; font-weight: bold; background-color:#81BEF7"></td>
<td><input type="number" name="attr_ressourcepoints" style="width: 5em; font-weight: bold; background-color:#81BEF7"></td>
</tr>
</table>
</fieldset> Then the code with input-elements (from the pathfinder sheet) also doesn't work (the text boxes blink): <fieldset class="repeating_Ressources">
<table cellpadding="0" cellspacing="0">
<tr>
<td colspan="3"><input class="sheet-inputbox" type="text" name="attr_weaponname" style="height: 24px; width: 260px;"></td>
<td><input class="sheet-inputbox" type="number" name="attr_weaponattackbonus" style="height: 24px; width: 110px;"></td>
<td><input class="sheet-inputbox" type="number" name="attr_weaponcritical" style="height: 24px; width: 100px;"></td>
</tr>
</table>
</fieldset>
The whole section is part of a super-table, that aligns the several sub-tables and this is the whole code (of that table): <td align="center">
<div>
<table cellpadding="0" cellspacing="0">
<tr>
<td colspan=2>
<b style='display: inline-block; width: 15em; font-size:25'>Ressourcen</b>
</td>
</tr>
<tr>
<td><input type="text" name="attr_Ansehen" style="width: 15em; font-weight: bold" disabled="true" value="Ansehen" /></td>
<td><input type=number name="attr_Ansehenswert" min="-2" style="width: 5em; font-weight: bold; background-color:#81BEF7; text-align: center" value=0></td>
</tr>
<tr>
<td><input type="text" name="attr_Kontakte" style="width: 15em; font-weight: bold;" disabled="true" value="Kontakte" /></td>
<td><input type=number name="attr_Kontaktewert" min="-2" style="width: 5em; font-weight: bold; background-color:#81BEF7; text-align: center" value=0></td>
</tr>
<tr>
<td><input type="text" name="attr_Stand" style="width: 15em; font-weight: bold;" disabled="true" value="Stand" /></td>
<td><input type=number name="attr_Standwert" min="-2" style="width: 5em; font-weight: bold; background-color:#81BEF7; text-align: center" value=0></td>
</tr>
<tr>
<td><input type="text" name="attr_Vermögen" style="width: 15em; font-weight: bold;" disabled="true" value="Vermögen" /></td>
<td><input type=number name="attr_Vermögenswert" min="-2" style="width: 5em; font-weight: bold; background-color:#81BEF7; text-align: center" value=0></td>
</tr>
</table>
</div>
<fieldset class="repeating_Ressources">
<table cellpadding="0" cellspacing="0">
<tr>
<td colspan="3"><input class="sheet-inputbox" type="text" name="attr_weaponname" style="height: 24px; width: 260px;"></td>
<td><input class="sheet-inputbox" type="number" name="attr_weaponattackbonus" style="height: 24px; width: 110px;"></td>
<td><input class="sheet-inputbox" type="number" name="attr_weaponcritical" style="height: 24px; width: 100px;"></td>
</tr>
</table>
</fieldset>
</td> Did anyone already encounter this error or can help me out with some piece of advice? That would be awesome! Greetings, Loki