Character Sheet Development/Bugs & Quirks
From Roll20 Wiki
Page Updated: 2022-03-30 |
This is related to Editing(coding) Character Sheets, which require Pro info to be able to use.Main Page: Building Character Sheets |
This page lists observed Bugs and odd quirks of the Character Sheet-system, especially those related to coding, editing & updating character sheets.
Character Sheet Development
Getting Started
- Using Custom Sheets
- Building Sheets
(Main Page) - Glossary
- Code Restrictions
- Best Practice
- Common Mistakes
- Tutorials
- Examples, Templates
- Pattern Libraries
- HTML & storing data
- CSS & Styling
General
- Updates & Changelog
- Known Bugs
- Character Sheet Enhancement(CSE)
- Custom Roll Parsing
- Legacy Sheet(LCS)
- Beacon SDK
Reference
- Buttons
- Repeating Sections
- Sheetworkers
- Roll Templates
- sheet.json
- Translation
- Auto-Calc
- Advanced
- All SheetDev Pages
Tools & Tips
Other
- See Restrictions for quirks that aren't explicit bugs.
- See BCS/Updates for previously fixed bugs, of bugs that may have a fix under public testing on the Dev Server
Note: The "Month Year" mention at end is a guaranteed last observation of the bug.
Contents |
Bugs
General
Sheet code/editing bugs that doesn't fit other categories.
- GIFs doesn't load correctly on Roll Templates See issue #6166 April 2020
- using optgroup in
<select>
doesn't work on custom sheets, even though it works on existing sheets like Free Spacer- discussion(Forum) May 2021
- workaround: CSS_Wizardry#Optgroup
- "Newly-dropped characters now must fully resolve before closing the window"
- changing default value of attributes will change untouched values of existing sheet. May 2021
- Ex.
<input value="a">
to<input value="b">
- example of instance of this bug being reverted
- Ex.
- Unicode character in CSS "content" breaks roll templates(Forum) Andreas J. (talk) 14:49, 12 August 2021 (UTC)
- certain emojis & unicode characters are removed from character sheets, so can't be reliably used. Use images instead. Dec 2021
- translation
- translation special character bug discussion(Forum) May 2021
- avoid placing symbols & special characters in translations. CouldHTML Entities be used instead?
- language-dependent sheet changes doesn't seem to work. See #9053 for details. Summer 2021
- translation special character bug discussion(Forum) May 2021
Repeating Sections
- Action button (sheetworker) does not work when placed in a repeating section table March 2022 - found by Peter B.
- position dissociating for action buttons in rep sections bug discussion(Forum) Feb 2022
- Button name's containing an underscore e.g "attack_roll" inside a repeating section, ARE NOT DETECTED by the
on("clicked:
- listener. Vince -details(Forum) - "Ghost Rows" in repeating sections when a dash '-' is used in the section name full description & reporduction steps(Forum) - found by Peter B. Jan 2021
- any regular attributes with
_repeating
in the attribute-name do not trigger API events. i.e.delete_repeating_rows
will fail. observation by Vince(Forum) Aug 2021 - Using
<table>
inside Repeating Sections might interfere with sheetworkers. Details: Button/Sheetworker not working(Forum) (Jan 2022)
Sheetworkers
Bugs in how sheetworkers function.
- odd behavior with default values December 2021
-
setAttrs
only updating the last value in a list in routine called withsetWithWorkers()
- thread(Forum) Reported Oct. 2021 - Sheet workers are now both case sensitive, and case-insensitive. (probably a bug)(Forum) Andreas J. (talk) 15:34, 25 July 2021 (UTC)
CSE
Bugs related to Character Sheet Enhancement(CSE).
- Roll Template-styling sometimes completely disappears and doesn't work when trying to convert from LCS to CSE. Andreas J. (talk) 21 April 2021
- HTML replacement characters have been observed to sometimes be converted prematurely after the CSE update was made which can cause sheet roll macros to break.
- Only appears to happen in CSE-mode. reported by Ayethin & Vince
- Workaround: since nested quotes and/or queries that include special characters may break in CSE-mode, try substituting the ampersand character as well. ie
"
should be changed to&quot;
. - Roll20 have under testing(Forum) improvements to make html characters redundant
- in some cases,
.charsheet
needs to be added to the CSS classes, which previously worked fine with Legacy Sheet- ex.
.charsheet span{ width: 150px;}
, instead ofspan{ width: 150px;}
- ex.
- Asterisks disappearing from CSS comments. examples & discussion(Forum) April 2021
- Chris D. may have uncovered strange behavior with CSS comments using multiple asterisk characters. eg
/******/
- Scott C. notes that this may be an older bug and suggests to use
#
instead. eg/*######*/
- probably same cause Rolltemplate styling not registering? March 2022
- Chris D. may have uncovered strange behavior with CSS comments using multiple asterisk characters. eg
- details & summary-element styling is inconsistent between browsers/versions details(Forum) April 2021
- Inconsistent handling of image URLs resulting in missing images on Rolltemplates
- To avoid having images behave differently on Rolltemplates, either manually encode your whitespaces to
%20
- Change your sheet folder to not have whitespaces at all to avoid this problem all together
- To avoid having images behave differently on Rolltemplates, either manually encode your whitespaces to
Legacy Sheet
Bugs that only affect Legacy Character Sheets(LCS).
- In legacy mode, the number comparison functions stop working if the number you are comparing is below zero. mention June 2021(Forum)
Github
Bug affecting how sheets uploaded to the sheet repo work or function.
- replacing sheet images on github doesn't always update on sheet to make sure images change on sheet when updating/replacing them, change their name/reference in the code, eg.
logo.jpg
tologo2.jpg
.- discussion on the bug
- This minor bug have been observed occasionally since 2019(?) (Andreas J. (talk) 15:39, 5 May 2021 (UTC))
See Also
- Building_Character_Sheets#Restrictions - Documented restrictions on how code is to be written.
- Common Mistakes - Character Sheet Development
- Character Sheet Development/Updates - Changelog of recent bugfixes