Skip to content

Latest commit

 

History

History
134 lines (95 loc) · 9.96 KB

multiselect.md

File metadata and controls

134 lines (95 loc) · 9.96 KB

Multi-select

Multi-select widget is used to capture user inputs from a specified list of permitted options. This widget captures multiple choices.

Properties

Properties allow you to edit the widget, connect it with other widgets and customize the user actions.

Widget Properties

These properties allow you to edit the widget. All these properties are present in the property pane of the widget. The following table lists all the widget properties.

Property Description
Options Let's you set labels and values for different items/options in the list of the multi-select widget. Options must be specified as an array of objects with a label and value property.
Default Value Sets a default option that will be captured as user input unless it is changed by the user. Multiple values can be provided as CSV or an array of strings for a Multi-Select dropdown.
Placeholder Sets the Placeholder of the multi-select widget.
Required When turned on, it makes a user input required and disables any form submission until input is made.
Visible Controls widget's visibility on the page. When turned off, the widget will not be visible when the app is published
Disabled Disables input/selection to the widget. The widget will remain visible to the user but user input/selection will not be allowed.
Animate Loading Allows you to control a widget’s animation on the page load.
Filterable Makes the dropdown list filterable.
Server Side Filtering Enables server-side filtering via an API / Query request. Use this property when your Select option data is being bound to an API / Query.
Allow Select All Controls the visibility of select all option in the dropdown.

Binding Properties

These properties allow you to bind your widget with any other widget in queries or JS objects. The following table lists all the binding properties.

Property Description
filterText The filter text for Server side filtering
isVisible This property indicates whether the widget is visible or not.
isDisabled This property indicates whether the widget is disabled or not.
options This property shows the values of all the options.
selectedOptionLabels An array of Labels of the options are displayed in a Multi-Select dropdown. This label changes if the default values of the dropdown change or the user changes an option selection
selectedOptionValues An array of values of the options are displayed in a Multi-Select dropdown. This value changes if the default values of the dropdown change or the user changes an option selection

Events

They are a set of actions that you can perform on the widget. The following table lists the actions:

Events Description
onOptionChange Sets the action to be run when the user selects/unselects an option. See a list of supported actions.

Label

The property hosts a group of configurations that you can use to associate a display name and define a placement for the widget. These properties are usually useful when you want to design forms that follow a defined alignment for your form fields and give a professional look to your forms. Below are the properties that you can use:

Label Description
Text Sets the Placeholder of the multi-select widget.
Position Sets the label position of the widget.
Alignment Sets the label alignment of the widget.
Width Sets the label width of the widget as the number of columns.

Text

It allows you to set the display name for the Multi-select widget. For example, if you want the user to add multiple tags, you can enter the text as "Tags."

{% hint style="info" %} You can leave the text empty if you don't want any display name for your Multi-select widget. {% endhint %}

Position

It allows you to specify the placement of the label. You can select one of the available options:

  • Top - It allows you to align the text at the top of the Multi-select widget.
  • Left - It aligns the text to the left of the Multi-select. When you select Left alignment, you get additional settings that you can use to control the alignment and define the text's width.
    • Alignment - With the help of alignment, you can define the placement of the text in accordance with the position of the Multi-select widget. You can choose:
      • Left - It aligns the text to the widget's left boundary that is away from the Multi-select widget.
      • Right - It aligns the text closer to the Multi-select widget.
    • Width - With the help of width, you can define the number of columns in the grid that surrounds the widget. You can specify how close or far the text can be placed to the Multi-select widget.
  • Auto - It automatically adjusts the position of the text based on the Multi-select widget's height.

{% hint style="info" %} Columns are the dashed lines (-----) that surround a widget when you try to drag and drop it on the canvas. {% endhint %}

{% embed url="https://www.youtube.com/watch?v=LlDnwBjDE6k" %}

Styles

Style properties allow you to change the look and feel of the widget.

Styles Description
Label Text Color Allows you to set text color for the label.
Label Text Size Allows you to set the size of the label.
Label Font Style Allows you to choose a font style, i.e., bold or italic.
Border Radius Allows you to define curved corners.
Box Shadow Allows you to choose from the available shadow styles.

Displaying Data

Multi-select options can be populated from a data source like an API / Query by transforming the incoming data to an array of (label, value). The transformation can be performed using javascript. So if the data is an array, we can transform it using the Array map function.

// Query1.data is assumed to be an array here
{{ Query1.data.map((row) => { 
      return { label: row.name, value: row.id } 
   }) 
}}

Filtering Data

A MultiSelect widget can be used to filter a dataset based on the user's input. The selected value can be passed to an API using**{{ multiselect1.selectedOptionValues }}** .

Server Side Filtering can also be enabled on the widget by enabling Server Side Filtering property.

Form Submission

Multi-select widgets can be used to capture from a fixed set of options inside a form such as gender, role, and status.

{% hint style="success" %} Some forms need to be pre-filled data from a table or API. We can bind the data to the default text property to enable this. {% endhint %}

{{ Table1.selectedRow.gender }}
/**
* Binding this to the default option will update the selected option 
* of the MultiSelect widget with the gender of the selected row in Table1
*/

Read more about submitting Input data to an API below.

Sending widget data in the post body