
I have a custom charactersheet with a repeating row for different type of Stress... I'd like to make the number of Stress boxes (the check boxes) change based on the number in the Max column so that it looks more like... <fieldset class="repeating_stress"> <input type="text" name="attr_stress_name" size="28" value=""/> &nbsp; <input type="number" name="attr_stress_max" size="2" style="width:40px;" value="0"/> &nbsp; <input type=checkbox name="attr_stress_chk1">&nbsp;<input type=checkbox name="attr_stress_chk2">&nbsp;<input type=checkbox name="attr_stress_chk3">&nbsp;<input type=checkbox name="attr_stress_chk4">&nbsp;<input type=checkbox name="attr_stress_chk5">&nbsp;<input type=checkbox name="attr_stress_chk6"> </fieldset> Is there some easy way to do this? I'm thinking there should be something I can do in CSS, but can't work out what. If the only solution is Javascript then how do I get it to trigger when the Sheet is viewed as well as when the number is changed and is there an easy way to refer to the different rows. TIA