Skip to main content

Default-Column

📘 Developer Guide

With the Default-Column Brick, you are able display simple columns based on table data.
Columns without specified component will default to the Default-Column Brick.


🔁 Example

Designer
(Dropable in both header and body columns)

image.png

Runtime

Screenshot From 2025-10-13 08-29-55.png

This example uses with the following data set:

{    
  "data": [
        {
            "id": "1",
            "firstname": "Jane",
            "lastname": "Doe",
            "personalInfo": {
                "age": 34,
                "gender": "female"
            }
        },
        {
            "id": "2",
            "firstname": "John",
            "lastname": "Doe",
            "personalInfo": {
                "age": 27,
                "gender": "male"
            }
        },
        {
            "id": "3",
            "firstname": "Max",
            "lastname": "Mustermann",
            "personalInfo": {
                "age": 35,
                "gender": "male"
            }
        }
    ]
}

⚙️ Configuration Properties
config

See HeaderCell and BodyCell for more information.

🛠️ Usage

Designer

(Use the build in configuration Inputs in the right Side-Nav)

Screenshot From 2025-10-13 08-28-58.png

Config

(Edit the whole configuration of the Default-Column to your liking)

Screenshot From 2025-10-13 08-29-21.png