Skip to content

Select#

Select #

Select(
    data: Union[DataType, DataFrame],
    *,
    id_column: TemplatedStringItem = "id",
    default_selection: Optional[str] = None,
    label_column: Optional[TemplatedStringItem] = None,
    widget_id: Optional[str] = None,
    label: TemplatedStringItem = "",
    label_outside: bool = True,
    group_column: Optional[TemplatedStringItem] = None,
    show_group_when_selected: bool = False
)

Construct select widget.

Construct a select widget for choosing from a list of options, with options to customize the data source, ID column, default selection, label column, widget ID, label text, grouping, and label display options.

Constructor for Select widget.

Parameters:

Name Type Description Default
data Union[DataType, DataFrame]

data to be used by widget. Accepts storages as well as raw data.

required
widget_id Optional[str]

unique widget id in a dashboard.

None
id_column TemplatedStringItem

name of column in pandas dataframe(s) used for the id associated with each entry.

'id'
label_column Optional[TemplatedStringItem]

name of column in pandas dataframe(s) used for the value displayed for each entry.

None
default_selection Optional[str]

id of entry that is selected by default.

None
label TemplatedStringItem

label shown before select options.

''
label_outside bool

flag that inserts the label parameter outside the select dropdown.

True
group_column Optional[TemplatedStringItem]

name of column in pandas dataframe(s) used to define the entries groups.

None
show_group_when_selected bool

flag will append the group name into entry label.

False

Examples:#

Create a minimal select widget
import pandas as pd
from engineai.sdk.dashboard import dashboard
from engineai.sdk.dashboard.widgets import select

data = pd.DataFrame(
    {
        "id": ["A", "B"],
    },
)
dashboard.Dashboard(
    app_slug="engineai-docs-steps",
    workspace_slug="engineai-docs-steps",
    content=select.Select(data=data),
)
Create select widget with group
import pandas as pd
from engineai.sdk.dashboard import dashboard
from engineai.sdk.dashboard.widgets import select

data = pd.DataFrame(
    {
        "id": ["A", "B", "C", "D", "E"],
        "group": ["group1", "group2", None, "group1", "group3"],
    },
)
dashboard.Dashboard(
    app_slug="engineai-docs-steps",
    workspace_slug="engineai-docs-steps",
    content=select.Select(data=data, group_column="group"),
)