Is it possible to add a “title” property to a CheckboxButtonGroup?
The result is supposed to be the same as with e.g. Select() and TextInput() widgets: Have a text directly above the widget element.
I have a column of a variable number of CheckboxButtonGroup() widgets and want to add a description to each of them.
Currently I am creating rows with pairs of Div() and CheckboxButtonGroup(), where the Div() contains the title. The rows are added to a list, and the list is included in the layout. The result looks like this:
Title 1: [But1a][But1b][But1c]
Title 2: [But2a][But2b]
``
It works, but seems rather complicated.
(Is this worth creating an issue on GitHub?)
Regards