We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using the sample from here: http://vaadin.github.io/gwt-polymer-elements/demo/#iron/IronListSample
The iron-list items are not selectable.
@manolo Is there anything one has to add to make then selectable?
I tried:
@UiField IronList resultList; Polymer.ready(resultList.getElement(), arg -> { resultList.setSelectionEnabled(true); resultList.getPolymerElement().addEventListener(IronSelectEvent.NAME, event -> { GWT.log("selected!!"); }); return null; });
but it never fired.
The text was updated successfully, but these errors were encountered:
The problem is that you cannot set tabindex$="[[tabIndex]]":
tabindex$="[[tabIndex]]"
<iron-list items="[[data]]" as="item"> <template> <div tabindex$="[[tabIndex]]"> Name: [[item.name]] </div> </template> </iron-list>
UIBinder will not allow this.
Sorry, something went wrong.
May be you could add some clever helper method to have a workaround.
could you provide your entire ui.xml file ? seems like you need an auxiliary template for the data binding
No branches or pull requests
Using the sample from here: http://vaadin.github.io/gwt-polymer-elements/demo/#iron/IronListSample
The iron-list items are not selectable.
@manolo Is there anything one has to add to make then selectable?
I tried:
but it never fired.
The text was updated successfully, but these errors were encountered: