Skip to content

status class

Displays a status or a list of statuses.

Methods

__init__()

__init__(
    value=None,
    without_close=False,
    id=None,
    properties=None,
    class_name=None,
    hover_text=None,
) -> None

Create a new status element.

Parameters:

Name Type Description Default
value Union[tuple, dict, list[dict], list[tuple]]

The different status items to represent. See below.

None
without_close bool

If True, the user cannot remove the status items from the list.

False
id str

The identifier assigned to the rendered HTML component.
This can be used in callbacks or to target the element for styling.

None
properties dict[str, Any]

A dictionary of additional properties that can be set to the element.

None
class_name dynamic(str)

A space-separated list of CSS class names to be applied to the generated HTML element.
These classes are added to the default taipy-status class.

None
hover_text dynamic(str)

The text that is displayed when the user hovers over the element.

None