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 .
×

Repeating fields keep reseting

Hello, hoping for help, I'm making a Mutants and Masterminds sheet and I want to use repeating fields for the powers, using text inputs and a textarea for notes/details. However when testing them if I type something into the textarea it resets the rest of the fieldset. I tried this on other fieldsets and they work fine, even if I put a textarea in them, the powers set is the only on that keeps resetting and its very frustrating as I've remade it over and over again but the same problem keeps occurring. Heres the fieldset: <fieldset> <table border="0" style="margin: auto;"> <tr height="5px"> <td width="50px"></td> <td width="220px"></td> <td width="50px"></td> <td width="163px"></td> <td width="56px"></td> <td width="50px"></td> <td width="55px"></td> <td width="163px"></td> </tr> <tr style="text-indent: 9px;"> <td colspan="2">Name:</td> <td>Rank:</td> <td>Action:</td> <td colspan="3">Range:</td> <td>Duration:</td> </tr> <tr> <td colspan="2"><input="text" style="width: 271px" name="attr_powername" /></td> <td><input="text" style="width: 50px" name="attr_powerrank" /></td> <td><input="text" style="width: 163px" name="attr_poweraction" /></td> <td colspan="3"><input="text" style="width: 163px" name="attr_powerrange" /></td> <td><input="text" style="width: 163px" name="attr_powerduration" /></td> </tr> <tr style="text-align: right;"> <td>Extras:</td> <td><input="text" style="width: 220px" name="attr_powerextras" /></td> <td>Feats:</td> <td colspan="2"><input="text" style="width: 220px" name="attr_powerfeats" /></td> <td>Flaws:</td> <td colspan="2"><input="text" style="width: 220px" name="attr_powerflaws" /></td> </tr> <tr> <td colspan="8" style="text-indent: 9px;">Description:</td> </tr> <tr> <td colspan="8"><textarea rows="2" style="height: 40px; width: 800px; padding: 0px; vertical-align: top;" name="attr_powerdetails" ></textarea></td> </tr> <tr> <td colspan="8" height="5px"><hr></td> </tr> </table> </fieldset>
your fieldset is not defined. It needs a defining factor like a name= field to save content.
Sorry, it does in the sheet, its class = "repeating_powers", for some reason it won't let me paste it here
I'm an idiot, I was putting input="text" instead of input type="text" on the other fields. I'm just going to go sit in the corner for a bit.
Try using the code wrap. On the top left of your reply area is a "paragraph" symbol, if you click that, one of the options is Code, which allows you to paste in most forms of html and css without the webpage attempting to run it.