Documentation

Combo Box

The Combo Box is part of the Editors components which the Builder supports.

Usage

  • Lets users choose from a list of options.
  • Can be related as a parent-child pair to support cascading. A cascading Combo Box is a series of two or more Combo Boxes where each Combo Box is filtered based on the selected option in the previous Combo Box.

Properties of Interest

  • Data Source—The name of a data source instance that you have defined in the Blank view. For more information, refer to the article on Blank view data sources.
  • Model—The data model that is associated with this component. For more information, refer to the article on using data source instances.
  • Events

    • Change Event Function—Fired when the value of the component is changed by the user.
    • Filtering Event function—Fired when the component is about to filter the data source.
    • (AngularJS only)Select Event Function—Fired when an item from the suggestion popup is selected by the user.

    Include any custom code for this event function in the controller.public.js file for AngularJS or in the [view-name].view.component.ts file for Angular which are located in the \app\src\modules\[module-name]\[view-name] folder. For more information, refer to the article on custom code.

In this article