GroupWidget

Visually group a collection of input widgets. Example:

from flexx import app, event, ui

class Example(ui.GroupWidget):
    def init(self):
        self.set_title('A silly panel')
        with ui.VBox():
            self.progress = ui.ProgressBar(min=0, max=9,
                                           text='Clicked {value} times')
            self.but = ui.Button(text='click me')

    @event.reaction('but.pointer_down')
    def _button_pressed(self, *events):
        self.progress.set_value(self.progress.value + 1)
open in new tab


class flexx.ui.GroupWidget(*init_args, **kwargs)

Inherits from: Widget

Widget to collect widgets in a named group. It does not provide a layout. This is similar to a QGroupBox or an HTML fieldset.

The node of this widget is a <fieldset>.

JS

alias of GroupWidget