paper-dropdown-menu
paper-dropdown-menu copied to clipboard
A Material Design browser select element
For Polymer 1.* and `paper-dropdown-menu` **before** 2.0 Documentation needs to state that `paper-listbox` has to have `class="dropdown-content"` for `paper-dropdown-menu` to drop down. Without that class, it will not drop down....
I'm using `` inside the iron-form. So, it works properly after the initial loading of a form and shows pre-selected value. But after the form reset - this value disappears....
### Description Due to the fact that if(0) is false, the following code in `paper-dropdown-menu.html` does not fire the return of opt_verticalOffset and instead returns 8 or -4. ```javascript _computeMenuVerticalOffset:...
I have paper-listbox element in a paper-dropdown-menu, values of items are different from labels. Here is the example Male Female But in the post, the label is given instead of...
### Description Need support for a search box. ### Expected outcome Currently there is no search box support, something similar to https://github.com/kolarski/select2-wrapper. ### Actual outcome Currently, you can just type...
### Description More than 100 dropdowns on the same page take few seconds to render and make page slow to response ### Expected outcome 100-200 dropdowns on the same page...
The paper-dropdown-menu works totally different from html `select`. I am not sure if this is intentional. Some of them seems to be bugs while others are nice to have. I...
On chrome the `paper-dropdown-menu` element does not close when lose focus. Works on Edge and IE. ``` {{city}} ``` The full element is at: https://github.com/victorhugom/acre-address-form or http://victorhugom.github.io/acre-address-form ### Browsers Affected...
https://github.com/PolymerElements/paper-dropdown-menu/issues/190
### Description Im using `on-iron-select="_itemSelected"` and ``` Polymer({ _itemSelected : function(e) { var selectedItem = e.target.selectedItem; if (selectedItem) { console.log("selected: " + selectedItem.value); } } }); ``` to get the...