paper-dropdown-menu
paper-dropdown-menu copied to clipboard
how to get selected option
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 value of the menu but I get: listener method _itemSelected not defined
Is there another method to get the selected Menu?
can u create an example for this in fiddle or something?