Type alias AutoCompleteElement

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

Type declaration

  • Optional autocompleteAttributes?: string[]

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

  • Optional defaultValue?: string
  • Optional placeholderValue?: string
  • Optional searchQuerystringParameter?: 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" .

  • Optional searchUrl?: string

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

  • type: "autocomplete"