Emmanuel Garcia
Emmanuel Garcia
You could also implement your own key down handlers for the up and down keys while the input is focused and have a state e.g. `focusedIndex` that you can decrease...
Yep, I have seen this issue in the past. This is because it's overriding `Node.children`. Unfortunately, this is a limitation of v1, probably solved in v2.
@43081j Thanks a lot for looking at this issue and sending a PR! Just for history, the line number is [1259](https://github.com/PolymerElements/iron-list/blob/d0edf75e26611ba320f3eea58e39047a266e0d96/iron-list.html#L1259)
This issue is also related to: https://github.com/PolymerElements/iron-list/issues/212
This is because the DOM nodes that iron-list manages have `style.transform = translate3d` which forces a stacking context. The current solution requires to append the menu outside the list. cc...
~~Alternatively, I'd consider exposing a different way of rendering, e.g. using translate2d instead of translate3d.~~ That won't work
Yes. Declarative properties are desirable from an API perspective although it might have a cost for users that don't care about these notifications. Depending on how it's implemented, the updates...
This seems to be an issue in Polymer. cc @azakus This is the issue we chatted about.
I agree that the list should support filtering and searching in the same way as dom-repeat.
Hi all! Let me ask @kevinpschaaf. The only reference is dom-repeat in Polymer. https://github.com/Polymer/polymer/blob/master/src/lib/template/dom-repeat.html#L301-L309