AutocompleteList ================ .. granite:servercomponent:: /libs/granite/ui/components/coral/foundation/form/autocomplete/list .. warning:: Deprecation The parent :granite:servercomponent:`Autocomplete ` is deprecated. The suggestion implementation showing the list to the user. It has the following content structure: .. gnd:gnd:: [granite:FormAutocompleteList] > granite:commonAttrs /** * The `URI Template `_ that is giving the response of HTML of the suggestion. * The format of the HTML is a stream of ``li`` elements. For example: * * .. code-block:: html * *
  • Item Display 1
  • *
  • Item Display 2
  • * * The URI Template supports ``start``, ``end``, ``query`` variables. * * start * The start index of the paging of selection items to be returned. * * end * The end index of the paging of selection items to be returned. * * query * The text that the user queries for. * * Example:: * * /path.html?start={start}&end={end}&query={query}&my-other-param=param1 * * If this property is not set, the items are read from the DataSource. */ - src (StringEL)