![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
vaadin-combo-box
Advanced tools
Polymer element for displaying a list of items with filtering
Live Demo ↗ | API documentation ↗
<vaadin-combo-box> is a Polymer element combining a dropdown list with an input field for filtering the list of items, part of the Vaadin Core Elements.
<div>
<style is="custom-style">
paper-icon-item {
margin: -13px -16px;
}
paper-icon-item img {
border-radius: 50%;
}
</style>
<template is="dom-bind">
<iron-ajax url="https://randomuser.me/api?results=100&inc=name,email,picture" last-response="{{response}}" auto></iron-ajax>
<vaadin-combo-box items="[[response.results]]" item-value-path="email" item-label-path="email">
<template>
<paper-icon-item>
<img src="[[item.picture.thumbnail]]" item-icon>
<paper-item-body two-line>
<div>[[item.name.first]] [[item.name.last]]</div>
<div secondary>[[item.email]]</div>
</paper-item-body>
</paper-icon-item>
</template>
</vaadin-combo-box>
</template>
</div>
Fork the vaadin-combo-box
repository and clone it locally.
Make sure you have npm installed.
When in the vaadin-combo-box
directory, run npm install
and then bower install
to install dependencies.
Run polymer serve --open
, browser will automatically open the component API documentation.
You can also open demo or in-browser tests by adding demo or test to the URL, for example:
vaadin-combo-box
directory, run polymer test
We are using ESLint for linting JavaScript code. You can check if your code is following our standards by running gulp lint
, which will automatically lint all .js
files as well as JavaScript snippets inside .html
files.
gulp lint
polymer test
Apache License 2.0
FAQs
Polymer element for displaying a list of items with filtering
We found that vaadin-combo-box demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 8 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.