SelectWorkspace
Introduction
SelectWorkspace
widget in Supervisely is a dropdown menu that allows users to select a workspace from a list of available workspaces. Clicking on it can be processed from python code. This widget is particularly useful when working with multiple workspaces in Supervisely and allows to easily switch between workspaces in applications.
Function signature
Parameters
Parameters | Type | Description |
---|---|---|
|
|
|
|
|
|
|
| Show only workspace select |
|
| Show label |
|
| Selector size (large/small/mini) |
|
| ID of the widget |
default_id
Determine Workspace
will be selected by default.
type: int
default value: None
team_id
Determine Team
will be selected by default.
type: int
default value: None
compact
Show only Workspace
select.
type: bool
default value: false
show_label
Determine show text Workspace
on widget or not, work only if compact
is True.
type: bool
default value: True
size
Size of input.
type: Literal["large", "small", "mini", None]
default value: None
widget_id
ID of the widget.
type: str
default value: None
Methods and attributes
Attributes and Methods | Description |
---|---|
| Return selected workspace id. |
Mini App Example
You can find this example in our Github repository:
ui-widgets-demos/selection/003_select_workspace/src/main.py
Import libraries
Init API client
First, we load environment variables with credentials and init API for communicating with Supervisely Instance:
Prepare team_id
and workspace_id
team_id
and workspace_id
Initialize SelectWorkspace
widget
SelectWorkspace
widgetCreate app layout
Prepare a layout for app using Card
widget with the content
parameter and place widget that we've just created in the Container
widget.
Create app using layout
Create an app object with layout parameter.
Last updated