Skip to main content
Version: v11.6.0

Configuring Select Widget from a Variable

A Select widget can be used in various ways based on the source of data. Each type of data source needs a different approach. WaveMaker Select widget works in any one of the following ways:

Instead of having a comma-separated list, one can use a Variable to hold the list and then bind it to the Select widget. This will enable us to reuse the list at multiple places if needed.

  1. Drag and drop a Select and Label widget onto the canvas.
  2. Create a Model Variable, choose the Is List and add the list values:
  3. Bind the Select Widget to the Model Variable dataset
  4. Set the Data field value to the dataValue of the model variable. This is the value that is selected by the user.
  5. The Display field is what the user sees in the list. In this case it is same as the Data field. We will see the case when both are different in the next use case.
  6. The selection made by the user is displayed in a Label widget, by binding the select datavalue to it.
  7. Preview the app and see the selected item from the Select widget displayed in the label.

Select Use Cases