The articles below have been reordered to be more useful. Core Articles are those directly supported by the documentation and which are handy to know for anyone writing code for Repeating Sections. Extra Articles are extrapolations from the existing documentation, and additional features you can use.
- What Is a Repeating Section?Describing a repeating section and explaining how and why to use it.
- Repeating Section NamesUnderstanding how to name the elements of a repeating section.
- Building a Repeating Section (HTML)Understanding the HTML and basic CSS of a repeating section.
- Styling a Repeating Section (CSS)How a repeating section is constructed on the sheet.
- Styling the Section Buttons (CSS)How to change the appearance of the buttons below every repeating section.
- Simple Repeating SectionsHow to build a simple repeating section, avoiding commnon pitfalls.
- Less Simple Repeating SectionsCreating more complex repeating sections.
- The One Line Repeating SectionWhen working ENTIRELY within a single row of a Repeating Section, Roll20 can supply the Row ID.
- Combining Repeating Sections and Global StatsHow to combine global stats with a repeating section.
- Advanced Action ButtonsAction Buttons have a few gotchas when used in a Repeating Section. Learn about them here.
- Undo in a Repeating SectionYou can build an undo function for repeating sections. Here's how.
- Repeating Section GotchasThere are a lot of little things that can trip you up, They are collected here.
- A Summary of Repeating SectionsAn overview of the entire series.
- Radio Buttons in Repeating SectionsHow to fake a radio button across all rows of a repeating section.
- Create Unique Repeating Section IDCreating a repeating section row id can create a problem. Here's a fix.
- getSectionIDs and the structure of a Repeating SectionRe[eating sections often follow a very similar structure. We look at that here.
- Chat Buttons to Launch AbilitiesAdd buttons in chat to launch abilities from a character sheet. This can be tricky for abilities in a repeating section.
- Ordering Repeating SectionsPlayers can manually reorder a repeating section. But that can create subtle problems...
- Filtering a Repeating SectionWant to filter a repeating section to show exactly what you want?
- Repeating Section Row IdHow to store the row id of a repeating section, and make it available for players.
- Arranging The Rows of a Repeating SectionExploiting the structure of a repeating section to change how it is presented.
- Sorting a Repeating SectionSorting a repeating section is not officially supported. Here's how you might attempt it.
- Repeating Section Function LibraryAn assortment of sheet worker functions useful for repeaating sections.
- Introduction
Demonstrating four ways to work with any number of repeating sections. Here is the HTML & CSS used in the next 4 posts. - Separate Outputs
How to combine multiple Repeating Sections - using repeatingSum
A guide to using repeatingSum, a simple and powerful, though limited, add-in function, - Russian Dolls
Handling multiple RS by nesting them - My Custom Function
My preferred method, a complex drop-in function to handle any number of Repeating Sections
Core Articles
Extra Articles
Multiple Repeating Sections
You often need to manipulate multiple repeating sections in the same worker. There are several ways to handle this problem.