Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are there any built in auto-complete input components for Polymer 1.0? [closed]

I've been muddling around with Polymer 1.0 since its release, and I've hit a use case where a select list just won't be sufficient (too many options to select from). What I really need is an autocomplete textbox.

Is there one built-in or planned in the paper or iron Polymer controls? Or should I be looking at autocomplete solutions from other frameworks? So far, I've been able to keep my app light-weight, and I'd prefer to avoid other frameworks if I can help it.

Thanks,

Ryan

Edit: The best place I've seen to bring up a first-party developed autocomplete is on the PolymerElements/paper-elements repo on GitHub. I'd discuss at https://github.com/PolymerElements/paper-elements/issues/26.

like image 985
Ryan Nigro Avatar asked Jun 09 '15 16:06

Ryan Nigro


People also ask

What's new in polymer?

More sophisticated gestures may be added in a future release as an optional components. The shady DOM system is new to Polymer in 1.0, and radically improves performance and decreases the size of the polyfill needed to run on browsers that don’t support shadow DOM natively.

Does polymer use CSS dynamically?

Currently Polymer uses a run-time shim for CSS custom properties to enable theming and styling elements. If you know that your styles won’t change dynamically, there is a potential performance improvement to realize by calculating all the resulting styles in advance.

What tools does the polymer team use?

The Polymer team is devoting a lot of work to tooling. There are four tools in our immediate sights to work on post-1.0: Stylesheet preprocessor. Polymer linter to help catch common errors that come up when developing with Polymer. “Data explorer” to help visualize data flow within a Polymer application.

How much faster is polymer over chrome?

As a sample of the performance difference between 0.5 and 1.0, the results from our medium-list benchmark was that Polymer 1.0 was about 3x faster on Chrome and 4x faster on Safari. The benchmark measures time to first paint for an application with a few thousand nested custom elements, with data binding.


1 Answers

Vaadin's combo box looks pretty solid:

Vaadin combo box

There is also Ellipticaljs's Paper Autocomplete, with a possible alternative md-autocomplete in the works.

paper-autocomplete

You can find more autocomplete elements by searching at http://customelements.io.

like image 86
Dan Dascalescu Avatar answered Sep 19 '22 06:09

Dan Dascalescu