I'm trying to add a external paper-input out fo the vaadin-grid element in order to filter by any column.
For the moment I did not found a good approach for it, any idea for it?
Each answer will be really appreciated .
Use two way binding
<paper-input type="text" value="{{filterVal}}"></paper-input>
<vaadin-grid-sorter path="name">Name</vaadin-grid-sorter>
<vaadin-grid-filter path="name" value="[[filterVal]]">
</vaadin-grid-filter>