Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 991 Bytes

vaadin-directory-description.md

File metadata and controls

19 lines (13 loc) · 991 Bytes

<vaadin-combo-box>

Available in Vaadin_Directory

<vaadin-combo-box> is a Web Component combining a dropdown list with an input field for filtering the list of items, part of the Vaadin components.

Screenshot of vaadin-combo-box

Example Usage

<dom-bind>
  <template>
    <iron-ajax url="https://randomuser.me/api?results=100&inc=name,email" last-response="{{response}}" auto></iron-ajax>
    <vaadin-combo-box label="User" placeholder="Please select" items="[[response.results]]" item-value-path="email" item-label-path="email"></vaadin-combo-box>
  </template>
</dom-bind>