Skip to main content

Can I Implement a Drop-Down Selector?

Currently there isn't a way to offer a multi-select dropdown, but you can use the Node Config Options tabular to get something similar.

The Node Definition screen provides options to configure node settings, including pre-SQL and post-SQL commands. Users can define dropdown selectors with multiple options, such as Create or Replace, Create If Not Exists, and Create At Existing Stream. This feature enables detailed customization of node behavior and execution parameters.

To get this, use the following code.

  - displayName: MultiSelect Options
attributeName: options_multiselect
type: tabular
columns:
- type: dropdownSelector
displayName: Option1
attributeName: Option1
options:
- Create or Replace
- Create If Not Exists
- Create At Existing Stream
isRequired: false

- type: dropdownSelector
displayName: Option2
attributeName: Option2
options:
- Create or Replace
- Create If Not Exists
- Create At Existing Stream
isRequired: false

- type: dropdownSelector
displayName: Option3
attributeName: Option3
options:
- Create or Replace
- Create If Not Exists
- Create At Existing Stream
isRequired: false

isRequired: false