Skip to content
R41z0r edited this page Jun 13, 2026 · 2 revisions

Contents

A group organizes controls inside a page. Direct controls join a group through groupID. modernGroup is a wrapper/legacy alias and must be mapped before or through RegisterLegacyControl.

Field Type Description
id string Stable group id.
title string Display heading.
order number Sort order.
app:RegisterGroup("interface.action-bars", {
  id = "visibility",
  title = "Visibility",
  order = 200,
})

app:RegisterControl("interface.action-bars", {
  id = "fadeOut",
  key = "fadeOut",
  groupID = "visibility",
  type = "toggle",
  label = "Fade out",
  default = false,
})

Wiki
  • Home
  • Architecture
  • Vendoring
  • Quick Start
  • Field Glossary
  • Troubleshooting
  • Validation

Reference
  ⚬ Config API
  ⚬ UI API
  ⚬ Elements
  ⚬ Examples

Elements
  Structure
   • Category
   • Page
   • Group
   • Dashboard
   • InfoPage
   • Custom
  Controls
   • Toggle
   • CheckboxDropdown
   • Dropdown
   • MultiDropdown
   • SoundDropdown
   • Input
   • Slider
   • Button
  Advanced
   • ColorPicker
   • ColorPalette
   • ColorOverrides
   • ReorderList
   • Expandable
   • Notes

Examples
  Start
   • Minimal Addon
   • Complete Settings Center
   • Wrapper Bridge Pattern
  Data and Behavior
   • Dependent Controls
   • Nested Database Values
   • Dynamic Dropdowns
   • Runtime Refresh
   • Search and New Badges
   • Custom Hosted Editors
  Polish
   • Support Links
   • Theme Colors
   • Theme Borders

Clone this wiki locally