Files
textual/docs/widgets/radioset.md
Rodrigo Girão Serrão d787f61090 State version of widget addition in docs. (#2144)
* State version of widget addition in docs.

Related issues: #2133

* Fix ListX version info.

* Retroactively update changelog.
2023-03-27 22:32:18 +01:00

1.1 KiB

RadioSet

!!! tip "Added in version 0.13.0"

A container widget that groups RadioButtons together.

  • Focusable
  • Container

Example

The example below shows two radio sets, one built using a collection of radio buttons, the other a collection of simple strings.

=== "Output"

```{.textual path="docs/examples/widgets/radio_set.py"}
```

=== "radio_set.py"

```python
--8<-- "docs/examples/widgets/radio_set.py"
```

=== "radio_set.css"

```sass
--8<-- "docs/examples/widgets/radio_set.css"
```

Messages

::: textual.widgets.RadioSet.Changed

Example

Here is an example of using the message to react to changes in a RadioSet:

=== "Output"

```{.textual path="docs/examples/widgets/radio_set_changed.py" press="enter"}
```

=== "radio_set_changed.py"

```python
--8<-- "docs/examples/widgets/radio_set_changed.py"
```

=== "radio_set_changed.css"

```sass
--8<-- "docs/examples/widgets/radio_set_changed.css"
```

See Also