AutocompleteList ================ .. granite:servercomponent:: /libs/granite/ui/components/foundation/form/autocomplete/list :deprecated: The suggestion implementation showing the list to the user. It has the following content structure: .. gnd:gnd:: [granite:FormAutocompleteList] /** * The id attribute. */ - id (String) /** * The class attribute. This is used to indicate the semantic relationship of the component similar to ``rel`` attribute. */ - rel (String) /** * The class attribute. */ - class (String) /** * The title attribute. */ - title (String) i18n /** * 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)