Reputation: 13
When you repeat the same selection item, already selected, the dropdown menu remains open. I would like to collapse the menu as it occurs when you select a different item. You can check this behavior in the demo. How can I modify the element to collapse the menu in any case?. Thanks.
Upvotes: 1
Views: 81
Reputation: 657058
The paper-dropdown-menu has an 'opened' property. You can listen on click of the dropdown content and if opened
is true, set it to false
.
Upvotes: 1