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

Remnants sheet bug testing

About a year ago I submitted a sheet for the game Remnants, after seeing it on roll20 I decided to run a game and yesterday I oversaw character creation. That's when my players noticed some bugs: Advantages get erased when using the radio buttons and closing the sheet. I couldn't see anything in the Remnant appearance and other notes section. Personal weapons has a typo. I would first like to know if there is any way to adjust the code of an existing sheet, or if I need to dig around in my hard drive for the original copy to make the changes. Secondly, I'd like some help with bug finding. If you see any bugs or typos, please let me know. Thanks.
1510503550
vÍnce
Pro
Sheet Author
Just grab the current code from the roll20 repo (<a href="https://github.com/Roll20/roll20-character-sheets/tree/master/Remnants" rel="nofollow">https://github.com/Roll20/roll20-character-sheets/tree/master/Remnants</a>) make your edits and submit a pull request.
So, I haven't found anything unusual with my code so far, Is there a problem with repeating? Because nothing that gets written into the repeating table sticks. &lt;div&gt; &lt;h3&gt;Advantages & Disadvantages&lt;/h3&gt; &lt;fieldset class="repeating_vantages"&gt; &lt;table border="1px"&gt; &lt;thead&gt; &lt;td&gt;Name:&lt;/td&gt; &lt;td colspan="2"&gt;Type:&lt;/td&gt; &lt;td colspan="2"&gt;Rating:&lt;/td&gt; &lt;/thead&gt; &lt;tbody&gt; &lt;td&gt;&lt;input type"text" name="attr_advantage"/&gt;&lt;/td&gt; &lt;td&gt;Ad&lt;input type="radio" name="attr_vantage_type"/&gt;&lt;/td&gt; &lt;td&gt;Disad&lt;input type="radio" name="attr_vantage_type"/&gt;&lt;/td&gt; &lt;td&gt;Minor&lt;input type="radio" name="attr_vantage_rating"/&gt;&lt;/td&gt; &lt;td&gt;Major&lt;input type="radio" name="attr_vantage_rating"/&gt;&lt;/td&gt; &lt;/tbody&gt; &lt;/table&gt; &lt;/fieldset&gt; &lt;/div&gt;
1510618391

Edited 1510618416
vÍnce
Pro
Sheet Author
Try fixing this line; &nbsp;&lt;td&gt;&lt;input type"text" name="attr_advantage"/&gt;&lt;/td&gt; s/b type="text" ;-P
You also should have value attributes for your radio buttons.
Thanks, good to know.