tdnb.multi_select() - Teradata VantageCloud Lake

Lake - Analyze Your Data with ClearScape Analytics™

Deployment
VantageCloud
Edition
Lake
Product
Teradata VantageCloud Lake
Release Number
Published
February 2025
ft:locale
en-US
ft:lastEdition
2026-02-20
dita:mapPath
tcl1683670667798.ditamap
dita:ditavalPath
pny1626732985837.ditaval
dita:id
tcl1683670667798

Use the tdnb.multi_select() function to create a multi select widget.

Required Parameters

name
Specifies the name of the widget.
Specify unique name for the widget. The value of this argument gets the value of this widget using the get() utility.
default_value
Specifies the default value of text to be placed while creating the widget.
choices
Specifies the dropdown values.
label
Specifies the label for the widget.

Example

Create a multi_select widget with name multiselect_widgetby setting default value as 1 and remaining dropdown values as 10, 20, 30. Keep the label as MultiSelect Label.

from teradatamlwidgets import tdnb
tdnb.multi_select('multiselect_widget', 1, [10, 20, 30], 'MultiSelect Label'

tdnb utility - tdnb.multi_select() function example output