Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

Compendium Drag and Drop into repeating sections dupicating entries

I asked this question on the Specific Use forums because I thought I was doing something wrong, after almost a week of troubleshooting on my end I believe that it is a bug and not a coding error. First I'll start off by explaining that I have a modified pathfinder sheet that I use that among other things splits the repeating spell sections into one spell section for EACH spell level in addition to one for each class.  So Level 0 spells have their own, Level 1 have their own etc.  Now, when I drag and drop into class 0 level 0, it places the spell just fine and there is no interference with any of the other repeating sections.  However, if I were to place it into class 0 level 1.  It will automatically fill in class 0 level 0 as the same spell (And likewise if I try to add any spell level higher than 1. I honestly, am at a loss for what is going on, the code that I use is as follows, <div class="sheet-sect">     <div class="sheet-table">         <span class="sheet-table-name">Level 0 Spells</span>     </div>     <fieldset class="repeating_lvl-0-spells">     <div class="compendium-drop-target">         <div class="sheet-table">             <span class="sheet-tdcs-sub sheet-center"><span class="sheet-tinylabel" style="">Roll</span><br><button type="roll" name="attr_roll" title="%{selected|repeating_lvl-0-spells_$X_roll}" value="@{macro-text}"></button></span>             <span class="sheet-tdcs-sub sheet-center"><span class="sheet-tinylabel" style="">Preped</span><br><input title="@{repeating_lvl-0-spells_$X_used}" type="number" name="attr_used" value="0" placeholder="Number Prepared"></span>             <span class="sheet-tdcs-sub sheet-center"><span class="sheet-tinylabel" style="">Name</span><br><input title="@{repeating_lvl-0-spells_$X_name}" type="text" value="N/A" name="attr_name" placeholder="Spell Name" accept="Name"></span>             <span class="sheet-tdcs-sub sheet-center"><span class="sheet-tinylabel" style="">School</span><br>                 <select title="@{repeating_lvl-0-spells_$X_school}" name="attr_school" style="width: 5.5em" accept="School">                     <option value="0}} {{school=None}}" selected>None</option><!-- Helps set Spell Focus Bonus -->                     <option value="@{sf-abjuration} }} {{school=Abjur}}">Abjuration</option>                     <option value="@{sf-conjuration} }} {{school=Conj}}">Conjuration</option>                     <option value="@{sf-divination} }} {{school=Div}}">Divination</option>                     <option value="@{sf-enchantment} }} {{school=Ench}}">Enchantment</option>                     <option value="@{sf-evocation} }} {{school=Evoc}}">Evocation</option>                     <option value="@{sf-illusion} }} {{school=Illus}}">Illusion</option>                     <option value="@{sf-necromancy} }} {{school=Necro}}">Necromancy</option>                     <option value="@{sf-transmutation} }} {{school=Trans}}">Transmutation</option>                     <option value="0}} {{school=Universal}}">Universal</option>                 </select></span>             <span class="sheet-tdcs-sub sheet-center"><span class="sheet-tinylabel" style="">Sub-school</span><br><input title="@{repeating_lvl-0-spells_$X_subschool}" type="text" value="N/A" name="attr_subschool" placeholder="[descriptor]"></span><!-- Grr Doesn't play nice with compendium import -->             <span class="sheet-tdcs-sub sheet-center"><span class="sheet-tinylabel" style="">Cast Time</span><br><input title="@{repeating_lvl-0-spells_$X_cast-time}" type="text" value="N/A" name="attr_cast-time" placeholder="Casting Time" accept="Casting Time"></span>             <span class="sheet-tdcs-sub sheet-center"><span class="sheet-tinylabel" style="">DC Mod</span><br><input title="@{repeating_lvl-0-spells_$X_DC-mod}" type="number" value="0" name="attr_DC-mod" placeholder="DC Mod"></span>         </div>         <div class="sheet-table">             <span class="sheet-tdcs-sub sheet-center"><span class="sheet-tinylabel" style="">Component Abbr</span><br><input title="@{repeating_lvl-0-spells_$X_components}" type="text" value="N/A" name="attr_components" placeholder="Components" accept="Components"></span>             <span class="sheet-tdcs-sub sheet-center"><span class="sheet-tinylabel" style="">Range</span><br><input title="@{repeating_lvl-0-spells_$X_range}" type="text" value="N/A" name="attr_range" placeholder="Range" accept="Range"></span>             <span class="sheet-tdcs-sub sheet-center"><span class="sheet-tinylabel" style="">Targets</span><br><input title="@{repeating_lvl-0-spells_$X_targets}" type="text" value="N/A" name="attr_targets" placeholder="Targets/Area" accept="target"></span>             <span class="sheet-tdcs-sub sheet-center"><span class="sheet-tinylabel" style="">Duration</span><br><input title="@{repeating_lvl-0-spells_$X_duration}" type="text" value="N/A" name="attr_duration" placeholder="Duration" accept="Duration"></span>             <span class="sheet-tdcs-sub sheet-center"><span class="sheet-tinylabel" style="">Save</span><br><input title="@{repeating_lvl-0-spells_$X_save}" type="text" value="N/A" name="attr_save" placeholder="Save Effect" accept="Saving Throw"></span>             <span class="sheet-tdcs-sub sheet-center"><span class="sheet-tinylabel" style="">SR</span><br>                 <select title="@{repeating_lvl-0-spells_$X_sr}" name="attr_sr" accept="Spell Resistance">                     <option value="" selected>Select SR</option>                     <option value="Yes">Yes</option>                     <option value="No">No</option>                     <option value="Yes (Harmless)">Yes (Harmless)</option>                     <option value="No (Harmless)">No (Harmless)</option>                 </select>             </span>         </div>         <div class="sheet-table" style="display: table; width: 95%;">             <div class="sheet-table-row">                 <span class="sheet-tdcs-sub sheet-center" style="width: "><span class="sheet-tinylabel">Attack Type</span><br><select title="@{repeating_lvl-0-spells_$X_attack}" name="attr_attack">                     <option value="">None/Aoe</option>                     <option value="**Attack:** [[1d20 + [[ @{attk-melee} ]] ]]">Melee</option>                     <option value="**Ranged:** [[1d20 + [[ @{attk-ranged} ]] ]]" selected>Ranged</option>                     <option value="**CMB:** [[1d20 + [[ @{CMB} ]] ]]">CMB</option>                     <option value="@{custattack}">Custom</option>                 </select></span>                 <span class="sheet-tdcs-sub sheet-center" style="width: "><span class="sheet-tinylabel">Has Damage</span><br><input type="checkbox" name="attr_hasdamage" value="1" checked title="@{repeating_lvl-0-spells_$X_hasdamage}"></span>                 <span class="sheet-tdcs-sub sheet-center" style="width: "><span class="sheet-tinylabel"># of attacks</span><br><input type="text" name="attr_numAtks" disabled title="This is field is reserved for possible future use."></span>                 <span class="sheet-tdcs-sub sheet-center" style="width: "><span class="sheet-tinylabel">Damage Type</span><br><select title="@{repeating_lvl-0-spells_$X_damage}" name="attr_damage">                     <option value="" selected>None</option>                     <option value="**Damage:** [[@{numDice}d@{damDice}+({@{bonDam}*@{cl0},@{bonDamMax}}dh1)]] (@{numDice}d@{damDice}+[[{@{bonDam}*@{CL0},@{bonDamMax}}dh1]])">Fixed</option>                     <option value="**Damage:** [[ [[{floor(@{CL0}/@{perCL}),@{MaxDice}}dh1]]d@{damDice} ]] ([[{floor(@{CL0}/@{perCL}),@{MaxDice}}dh1]]d@{damDice})">Level Based</option>                     <option value="@{custdamage}">Custom</option>                 </select></span>             </div><!-- End of Description Header Row  -->         </div>         <b>Custom Attack        </b>         <input type="checkbox" class="sheet-atk-show" title="@{repeating_lvl-0-spells_$X_attack-show}" name="attr_attack-show" value="1" style="opacity:0;width: 35px;height: 16px;position: relative;top: 5px;left: 6px;margin: -32px;cursor: pointer;z-index: 1;" checked/><span></span>         <div class="sheet-atk">         <textarea name="attr_custattack" class="sheet-rep-atk-macro" title="!!WARNING!! Use inline roll formula only.  API commands cannot function within a roll template. (@{repeating_lvl-0-spells_$X_custattack})"></textarea>         </div>         <br>         <b>Custom Damage        </b>         <input type="checkbox" class="sheet-dmg-show" title="@{repeating_lvl-0-spells_$X_damage-show}" name="attr_damage-show" value="1" style="opacity:0;width: 35px;height: 16px;position: relative;top: 5px;left: 6px;margin: -32px;cursor: pointer;z-index: 1;" checked/><span></span>         <div class="sheet-dmg">             <div class="sheet-table" style="display: table; width: 95%;">                 <div class="sheet-table-row">                     <span class="sheet-tdcs-sub sheet-center" style="width: "><span class="sheet-tinylabel" style="">##</span><br><input title="The number of dice to be rolled per xx/caster levels. If Manual damage is selected this should remain zero. (@{repeating_lvl-0-spells_$X_numDice})" type="text" style="width: 25px;" value="1" name="attr_numDice" ></span>                     <span class="sheet-tdcs-sub sheet-center" style="width: ">d</span>                     <span class="sheet-tdcs-sub sheet-center" style="width: "><span class="sheet-tinylabel" style="">##</span><br><input title="The size of the dice to be rolled for damage. (@{repeating_lvl-0-spells_$X_damDice})" type="text" style="width: 25px;" value="1" name="attr_DamDice" ></span>                     <span class="sheet-tdcs-sub sheet-center" style="width: ">/</span>                     <span class="sheet-tdcs-sub sheet-center" style="width: "><span class="sheet-tinylabel" style="">Per X CL</span><br><input title="Every how many caster levels does this damage increase. (@{repeating_lvl-0-spells_$X_perCL})" type="text" style="width: 25px;" value="1" name="attr_perCL" > level(s)</span>                     <span class="sheet-tdcs-sub sheet-center" style="width: "><span class="sheet-tinylabel" style="">Max CL<br></span><input title="The maximum number of CL counted for a spell's damage component. (@{repeating_lvl-0-spells_$X_MaxDice})" type="text" style="width: 25px" value="99" name="attr_MaxDice" ></span>                     <span class="sheet-tdcs-sub sheet-center" style="width: "><span class="sheet-tinylabel" style="">+Dam</span><br><input title="This is only applied for Fixed Damage.  Used for cure spells and some low level damage spells #x#/CL +@{spellbonDam}. (@{repeating_lvl-0-spells_$X_bonDam})" type="text" style="width: 25px" value="0" name="attr_bonDam"></span>                     <span class="sheet-tdcs-sub sheet-center" style="width: "><span class="sheet-tinylabel" style="">Max Bon</span><br><input title="The maximum number of CL counted for a Fixed Damage Spell. (@{repeating_lvl-0-spells_$X_bonDamMax})" type="text" style="width: 25px" value="99" name="attr_bonDamMax"></span>                     <span class="sheet-tdcs-sub sheet-center" style="width: 50em;"></span>                 </div> <!-- End of Description Header Row  -->             </div>             <textarea class="sheet-rep-damage-macro" name="attr_custdamge" title="!!WARNING!! Use inline roll formula only.  API commands cannot function within a roll template. (@{repeating_lvl-0-spells_$X_custattack})"></textarea>         </div>         <br>         <b>Description        </b>         <input type="checkbox" class="sheet-desc-show" title="@{repeating_lvl-0-spells_$X_description-show}" name="attr_description-show" value="1" style="opacity:0;width: 35px;height: 16px;position: relative;top: 5px;left: 6px;margin: -32px;cursor: pointer;z-index: 1;" checked/><span></span>         <div class="sheet-desc">         <textarea title="@{repeating_lvl-0-spells_$X_description}" name="attr_description" class="sheet-spelldesc" accept="Content"></textarea>             <div class="sheet-table sheet-desc" style="display: table; width: 97%; margin-left: 1%; margin-right: 2%;">                 <div class="sheet-table-row">                     <span class="sheet-tdcs sheet-tinylabel" style="width: 50%;">Components</span>                     <span class="sheet-tdcs sheet-tinylabel" style="width: 50%;">Info Link</span>                 </div> <!-- End of Description Header Row  -->                 <div class="sheet-table-row">                     <span class="sheet-tdcs-sub" style="50%"><input title="(@{repeating_lvl-0-spells_$X_components-desc})" type="text" name="attr_components-desc"></span>                     <span class="sheet-tdcs-sub" style="50%"> | <input title="Full URL required, including http:// (@{repeating_lvl-0-spells_$X_spellInfoLin... type="text" name="attr_spellInfoLink"></span>                             </div> <!-- End of Description Content Row  -->             </div>         </div>         <br>         <b>Macro Text        </b>         <input type="checkbox" class="sheet-macro-text-show" title="@{repeating_lvl-0-spells_$X_macro-text-show}" name="attr_macro-text-show" value="1" style="opacity:0;width: 35px;height: 16px;position: relative;top: 5px;left: 6px;margin: -32px;cursor: pointer;z-index: 1;"/><span></span>         <textarea class="sheet-macro-text" title="@{repeating_lvl-0-spells_$X_macro-text}" name="attr_macro-text">&{template:35Adv_spell} {{show-spellinfoblock=1}}{{show-spelldescription=1}} {{show-save1=1}} {{show-attack1=1}} {{spl_display=@{hasdamage} }} {{spl_attack=@{attack}}} {{damage=@{damage} }} {{name=@{Name}}} {{infolink=@{spellinfoLink}}} {{school=@{school} }} {{subschool=@{subschool} }} {{level=@{spellclass-0-name} 1}} {{casting_time=@{cast-time}}} {{components=@{components}}} {{range=@{range}}} {{target=@{targets}}} {{duration=@{duration}}} {{saving_throw1=[[ @{spellclass-0-level-0-savedc} + [[@{school}]][Focus] + [[ @{DC-mod} ]][Mod] ]] @{save}}} {{sr=@{sr}}} {{spell_description=@{description}}} {{spell_components=@{components-desc}}}</textarea>         <hr>     </div><!-- End of Compendium insert DIV -->     </fieldset> </div> <!-- Some intermediate stuff goes here --> <fieldset class="repeating_lvl-1-spells">                     <div class="compendium-drop-target">                         <div class="sheet-table">                             <span class="sheet-tdcs-sub sheet-center"><span class="sheet-tinylabel" style="">Roll</span><br><button type="roll" name="attr_roll" title="%{selected|repeating_lvl-1-spells_$X_roll}" value="@{macro-text}"></button></span>                             <span class="sheet-tdcs-sub sheet-center"><span class="sheet-tinylabel" style="">Preped</span><br><input title="@{repeating_lvl-1-spells_$X_used}" type="number" name="attr_used" value="0" placeholder="Number Prepared"></span>                             <span class="sheet-tdcs-sub sheet-center"><span class="sheet-tinylabel" style="">Name</span><br><input title="@{repeating_lvl-1-spells_$X_name}" type="text" value="N/A" name="attr_name" placeholder="Spell Name" accept="Name"></span>                             <span class="sheet-tdcs-sub sheet-center"><span class="sheet-tinylabel" style="">School</span><br>                                 <select title="@{repeating_lvl-1-spells_$X_school}" name="attr_school" style="width: 5.5em" accept="School">                                     <option value="0}} {{school=None}}" selected>None</option>                                     <option value="@{sf-abjuration} }} {{school=Abjur}}">Abjuration</option>                                     <option value="@{sf-conjuration} }} {{school=Conj}}">Conjuration</option>                                     <option value="@{sf-divination} }} {{school=Div}}">Divination</option>                                     <option value="@{sf-enchantment} }} {{school=Ench}}">Enchantment</option>                                     <option value="@{sf-evocation} }} {{school=Evoc}}">Evocation</option>                                     <option value="@{sf-illusion} }} {{school=Illus}}">Illusion</option>                                     <option value="@{sf-necromancy} }} {{school=Necro}}">Necromancy</option>                                     <option value="@{sf-transmutation} }} {{school=Trans}}">Transmutation</option>                                     <option value="0}} {{school=Universal}}">Universal</option>                                 </select></span>                             <span class="sheet-tdcs-sub sheet-center"><span class="sheet-tinylabel" style="">Sub-school</span><br><input title="@{repeating_lvl-1-spells_$X_subschool}" type="text" value="N/A" name="attr_subschool" placeholder="[descriptor]"></span>                             <span class="sheet-tdcs-sub sheet-center"><span class="sheet-tinylabel" style="">Cast Time</span><br><input title="@{repeating_lvl-1-spells_$X_cast-time}" type="text" value="N/A" name="attr_cast-time" placeholder="Casting Time" accept="Casting Time"></span>                             <span class="sheet-tdcs-sub sheet-center"><span class="sheet-tinylabel" style="">DC Mod</span><br><input title="@{repeating_lvl-1-spells_$X_DC-mod}" type="number" value="0" name="attr_DC-mod" placeholder="DC Mod"></span>                         </div>                         <div class="sheet-table">                             <span class="sheet-tdcs-sub sheet-center"><span class="sheet-tinylabel" style="">Component Abbr</span><br><input title="@{repeating_lvl-1-spells_$X_components}" type="text" value="N/A" name="attr_components" placeholder="Components" accept="Components"></span>                             <span class="sheet-tdcs-sub sheet-center"><span class="sheet-tinylabel" style="">Range</span><br><input title="@{repeating_lvl-1-spells_$X_range}" type="text" value="N/A" name="attr_range" placeholder="Range" accept="Range"></span>                             <span class="sheet-tdcs-sub sheet-center"><span class="sheet-tinylabel" style="">Targets</span><br><input title="@{repeating_lvl-1-spells_$X_targets}" type="text" value="N/A" name="attr_targets" placeholder="Targets/Area"></span>                             <span class="sheet-tdcs-sub sheet-center"><span class="sheet-tinylabel" style="">Duration</span><br><input title="@{repeating_lvl-1-spells_$X_duration}" type="text" value="N/A" name="attr_duration" placeholder="Duration" accept="Duration"></span>                             <span class="sheet-tdcs-sub sheet-center"><span class="sheet-tinylabel" style="">Save</span><br><input title="@{repeating_lvl-1-spells_$X_save}" type="text" value="N/A" name="attr_save" placeholder="Save Effect" accept="Saving Throw"></span>                             <span class="sheet-tdcs-sub sheet-center"><span class="sheet-tinylabel" style="">SR</span><br>                                 <select title="@{repeating_lvl-1-spells_$X_sr}" name="attr_sr" accept="Spell Resistance">                                     <option value="" selected>Select SR</option>                                     <option value="Yes">Yes</option>                                     <option value="No">No</option>                                     <option value="Yes (Harmless)">Yes (Harmless)</option>                                     <option value="No (Harmless)">No (Harmless)</option>                                 </select>                             </span>                         </div>                         <div class="sheet-table" style="display: table; width: 95%;">                             <div class="sheet-table-row">                                 <span class="sheet-tdcs-sub sheet-center" style="width: "><span class="sheet-tinylabel">Has Damage</span><br><input type="checkbox" name="attr_hasdamage" value="1" checked title="@{repeating_lvl-1-spells_$X_hasdamage}"></span>                                 <span class="sheet-tdcs-sub sheet-center" style="width: "><span class="sheet-tinylabel">Attack Type</span><br><select title="@{repeating_lvl-1-spells_$X_attack}" name="attr_attack">                                     <option value="">None/Aoe</option>                                     <option value="**Attack:** [[1d20 + [[ @{attk-melee} ]] ]]">Melee</option>                                     <option value="**Ranged:** [[1d20 + [[ @{attk-ranged} ]] ]]" selected>Ranged</option>                                     <option value="**CMB:** [[1d20 + [[ @{CMB} ]] ]]">CMB</option>                                     <option value="@{custattack}">Custom</option>                                 </select></span>                                 <span class="sheet-tdcs-sub sheet-center" style="width: "><span class="sheet-tinylabel"># of attacks</span><br><input type="text" name="attr_numAtks" disabled title="This is field is reserved for possible future use."></span>                                 <span class="sheet-tdcs-sub sheet-center" style="width: "><span class="sheet-tinylabel">Damage Type</span><br><select title="@{repeating_lvl-1-spells_$X_damage}" name="attr_damage">                                     <option value="" selected>None</option>                                     <option value="**Damage:** [[@{numDice}d@{damDice}+({@{bonDam}*@{cl0},@{bonDamMax}}dh1)]] (@{numDice}d@{damDice}+[[{@{bonDam}*@{CL0},@{bonDamMax}}dh1]])">Fixed</option>                                     <option value="**Damage:** [[ [[{floor(@{CL0}/@{perCL}),@{MaxDice}}dh1]]d@{damDice} ]] ([[{floor(@{CL0}/@{perCL}),@{MaxDice}}dh1]]d@{damDice})">Level Based</option>                                     <option value="@{custdamage}">Custom</option>                                 </select></span>                             </div><!-- End of Description Header Row  -->                         </div>                         <b>Attack        </b>                         <input type="checkbox" class="sheet-atk-show" title="@{repeating_lvl-1-spells_$X_attack-show}" name="attr_attack-show" value="1" style="opacity:0;width: 35px;height: 16px;position: relative;top: 5px;left: 6px;margin: -32px;cursor: pointer;z-index: 1;" checked/><span></span>                         <div class="sheet-atk">                         <textarea name="attr_custattack" class="sheet-rep-atk-macro" title="(@{repeating_lvl-1-spells_$X_custattack})"></textarea>                         </div>                         <br>                         <b>Damage        </b>                         <input type="checkbox" class="sheet-dmg-show" title="@{repeating_lvl-1-spells_$X_damage-show}" name="attr_damage-show" value="1" style="opacity:0;width: 35px;height: 16px;position: relative;top: 5px;left: 6px;margin: -32px;cursor: pointer;z-index: 1;" checked/><span></span>                         <div class="sheet-dmg">                             <div class="sheet-table" style="display: table; width: 95%;">                                 <div class="sheet-table-row">                                     <span class="sheet-tdcs-sub sheet-center" style="width: "><span class="sheet-tinylabel" style="">##</span><br><input title="The number of dice to be rolled per xx/caster levels. If Manual damage is selected this should remain zero. (@{repeating_lvl-1-spells_$X_numDice})" type="text" style="width: 25px;" value="1" name="attr_numDice" ></span>                                     <span class="sheet-tdcs-sub sheet-center" style="width: ">d</span>                                     <span class="sheet-tdcs-sub sheet-center" style="width: "><span class="sheet-tinylabel" style="">##</span><br><input title="The size of the dice to be rolled for damage. (@{repeating_lvl-1-spells_$X_damDice})" type="text" style="width: 25px;" value="1" name="attr_DamDice" ></span>                                     <span class="sheet-tdcs-sub sheet-center" style="width: ">/</span>                                     <span class="sheet-tdcs-sub sheet-center" style="width: "><span class="sheet-tinylabel" style="">Per X CL</span><br><input title="Every how many caster levels does this damage increase. (@{repeating_lvl-1-spells_$X_perCL})" type="text" style="width: 25px;" value="1" name="attr_perCL" > level(s)</span>                                     <span class="sheet-tdcs-sub sheet-center" style="width: "><span class="sheet-tinylabel" style="">Max CL<br></span><input title="The maximum number of CL counted for a spell's damage component. (@{repeating_lvl-1-spells_$X_MaxDice})" type="text" style="width: 25px" value="99" name="attr_MaxDice" ></span>                                     <span class="sheet-tdcs-sub sheet-center" style="width: "><span class="sheet-tinylabel" style="">+Dam</span><br><input title="This is only applied for Fixed Damage.  Used for cure spells and some low level damage spells #x#/CL +@{spellbonDam}. (@{repeating_lvl-1-spells_$X_bonDam})" type="text" style="width: 25px" value="0" name="attr_bonDam"></span>                                     <span class="sheet-tdcs-sub sheet-center" style="width: "><span class="sheet-tinylabel" style="">Max Bon</span><br><input title="The maximum number of CL counted for a Fixed Damage Spell. (@{repeating_lvl-1-spells_$X_bonDamMax})" type="text" style="width: 25px" value="99" name="attr_bonDamMax"></span>                                     <span class="sheet-tdcs-sub sheet-center" style="width: 50em;"></span>                                 </div> <!-- End of Description Header Row  -->                             </div>                             <textarea class="sheet-rep-damage-macro" name="attr_custdamage" title=" (@{repeating_lvl-1-spells_$X_custdamage})"></textarea>                         </div>                         <br>                         <b>Description        </b>                         <input type="checkbox" class="sheet-desc-show" title="@{repeating_lvl-1-spells_$X_description-show}" name="attr_description-show" value="1" style="opacity:0;width: 35px;height: 16px;position: relative;top: 5px;left: 6px;margin: -32px;cursor: pointer;z-index: 1;" checked/><span></span>                         <div class="sheet-desc">                         <textarea title="@{repeating_lvl-1-spells_$X_description}" name="attr_description" class="sheet-spelldesc" accept="Content"></textarea>                             <div class="sheet-table sheet-desc" style="display: table; width: 97%; margin-left: 1%; margin-right: 2%;">                                 <div class="sheet-table-row">                                     <span class="sheet-tdcs sheet-tinylabel" style="width: 50%;">Components</span>                                     <span class="sheet-tdcs sheet-tinylabel" style="width: 50%;">Info Link</span>                                 </div> <!-- End of Description Header Row  -->                                 <div class="sheet-table-row">                                     <span class="sheet-tdcs-sub" style="50%"><input title="(@{repeating_lvl-1-spells_$X_components-desc})" type="text" name="attr_components-desc"></span>                                     <span class="sheet-tdcs-sub" style="50%"> | <input title="Full URL required, including http:// (@{repeating_lvl-1-spells_$X_spellInfoLink})" type="text" name="attr_spellInfoLink"></span>                                             </div> <!-- End of Description Content Row  -->                             </div>                         </div>                         <br>                         <b>Macro Text        </b>                         <input type="checkbox" class="sheet-macro-text-show" title="@{repeating_lvl-1-spells_$X_macro-text-show}" name="attr_macro-text-show" value="1" style="opacity:0;width: 35px;height: 16px;position: relative;top: 5px;left: 6px;margin: -32px;cursor: pointer;z-index: 1;"/><span></span>                         <textarea class="sheet-macro-text" title="@{repeating_lvl-1-spells_$X_macro-text}" name="attr_macro-text">&{template:35Adv_spell} {{show-spellinfoblock=1}}{{show-spelldescription=1}} {{show-save1=1}} {{show-attack1=1}} {{spl_display=@{hasdamage}}} {{spl_attack=@{attack}}} {{damage=@{damage} }} {{name=@{Name}}} {{show-save1=1}} {{name=@{Name}}} {{infolink=@{spellinfoLink}}} {{school=@{school} }} {{subschool=@{subschool} }} {{level=@{spellclass-0-name} 1}} {{casting_time=@{cast-time}}} {{components=@{components}}} {{range=@{range}}} {{target=@{targets}}} {{duration=@{duration}}} {{saving_throw1=[[ @{spellclass-0-level-1-savedc} + [[@{school}]][Focus] + [[ @{DC-mod} ]][Mod] ]] @{save}}} {{sr=@{sr}}} {{spell_description=@{description}}} {{spell_components=@{components-desc}}}</textarea>                     </div>                     </fieldset> I receive no errors, no warnings (related to repeating sections), and regardless of what browser I try.  If you would like access to my testing campaign I have no problem posting it here or through private message.
Can you post your whole character sheet HTML into a Gist? Sorry it's a little hard to read that much code on the forum code formatting. <a href="http://gist.github.com" rel="nofollow">http://gist.github.com</a>
Sure, its truncated though.&nbsp; The relevant code begins at line 10123. <a href="https://gist.github.com/anonymous/21ae67196808d43e8f88" rel="nofollow">https://gist.github.com/anonymous/21ae67196808d43e8f88</a>
Sorry, I meant to ask for the CSS, too. Truncated is fine. I just want to get the full thing so I can see if I can reproduce locally.
Here is the CSS too <a href="https://gist.github.com/anonymous/e8ecba998de68ddc181e" rel="nofollow">https://gist.github.com/anonymous/e8ecba998de68ddc181e</a>
1456044062

Edited 1456044088
Toby
Pro
I have also noticed another issue with the compendium.&nbsp; I don't think it is related but it is somewhat frustrating.&nbsp; For character sheets that have fields set as a numeric values (type="number"), the character sheet/ code does not know how to handle it if the value has a suffix or prefix. For example, if I try and drag and drop an armor.&nbsp; The system will try and add the full information..&nbsp; Including the plus/minus symbol, the percent sign, and the&nbsp; "lbs." and "gp" as strings. This causes a great deal of issues with fields that are sending their value to a sheet worker.
i'm having same issue. also, fills in spell in feats and class abilities sections. it screwed up my whole character. HELP! thnx