material design - Polymer 1.0 missing paper-select workaround -
since there no paper-select element, there way of using iron-dropdown apply material design below select type extension element?
<dom-module id="my-products"> <template> <option value="volvo">volvo</option> <option value="saab">saab</option> <option value="mercedes">mercedes</option> <option value="audi">audi</option> </template> <script> polymer({ is: 'my-products', extends: 'select' }); </script> </dom-module>
this demonstrated in newly released paper-dropdown-element on github:
Comments
Post a Comment