
Greetings...I am attempting to create a repeating row with the usual "Add" and "Modify" buttons at the bottom... Here is my code... <div class="sheet-3colrow sheet-row"> <h2>Character Skills, Abilities, & Disadvantages</h2> <h4 class="sheet-section-head">Skills & Abilities</h4> <div> <div class="sheet-skill-header sheet-skill-value sheet-center">Roll</div> <div class="sheet-skill-header sheet-skill-label">Skill</div> <div class="sheet-skill-header sheet-skill-value sheet-center">Cost</div> </div> <fieldset class="repeating_skill"> <div> <input class="sheet-skill-value sheet-center" name="attr_skill1_roll" type="text" value="n/a"> <input class="sheet-skill-label sheet-left" name="attr_skill1_name" type="text"> <input class="sheet-skill-value sheet-center" name="attr_skill1_cost" type="number" value="0"> </div> </fieldset> </div> The problem I am getting is that the data I am entering into the input fields is not being assigned to attributes in the "attributes & abilities" page of the character sheet... Ho do I resolve this? Thanks in advance...Ray