List-group widget

The list-group widget displays a list of text items with a header. The user can select one item.

Example

Properties

Property

Description

Data type

id

Unique identifier of this widget.

string

items

Array of text labels for list items.

string

header

Text displayed as a header.

string

type Rich-media type, which is always ListGroup. string

Code sample

 var obj = {
    "widgetType": "form",
    "nodes":
    [{
            "id": "widget1",
            "controls": {
                "0": {
                    "type": "ListGroup",
                    "items": ["satisfactory", "excellent"],
                    "id": "list1",
                    "header": "Items that are avilable to order"
                }
            }
        }
    ]
}