Documentation

Auto Complete

The Auto Complete is part of the Editors components which the Builder supports.

Usage

  • Represents a form component.
  • Provides suggestions depending on the typed text.

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