AutoCompleteElement: FormElementWithOptionsBase & {
    autocompleteAttributes?: string[];
    defaultValue?: string;
    placeholderValue?: string;
    searchQuerystringParameter?: string;
    searchUrl?: string;
    type: "autocomplete";
}

Type declaration

  • OptionalautocompleteAttributes?: string[]

    Custom autocomplete attributes that will be added to the element during rendering

  • OptionaldefaultValue?: string
  • OptionalplaceholderValue?: string
  • OptionalsearchQuerystringParameter?: string

    If specified, a request will be made to the "searchUrl" with this querystring parameter assigned the value typed into the input, otherwise the querystring parameter will be "value" .

  • OptionalsearchUrl?: string

    If specified, a request will be made to the "searchUrl" allowing the options to be filtered on the server.

  • type: "autocomplete"