ElementTagsList
Introduction
ElementTagsList
widget in Supervisely is a widget that allows users to display multiple elements tags in the UI.
Function signature
Parameters
tags
List of ElementTagsList.Tag
objects, that will be displayed in the UI. ElementTagsList.Tag
object is based on ElementTag
widget and has the same arguments. You can learn about them in the ElementTag tutorial.
If you want to add close button to the tag, you can use ElementTagsList.Tag
object with closable=True
argument.
type: List[ElementTagsList.Tag]
widget_id
ID of the widget
type: str
default value: None
Methods and attributes
Mini App Example
You can find this example in our Github repository:
supervisely-ecosystem/ui-widgets-demos/text elements/009_element_tags_list/src/main.py
Import libraries
Init API client
First, we load environment variables with credentials and init API for communicating with Supervisely Instance:
Create Tag objects for ElementTagsList widget
Initialize ElementTagsList widget
Create app layout
Prepare a layout for app using Card
widget with the content
parameter.
Create app using layout
Create an app object with layout parameter.
Add handlers to the widget
Last updated