Lazy load items with filtering
问题 I am using Backbone.js to load 20 items at a time on the page, getting more items when you scroll down to the bottom until there are none left to fetch from the server. At the same time, I want an input field up top that as you type a name, it filters the items that match. The issue is, if you haven't scrolled to the bottom yet and fetched the full set, the input filter will only match the items that are currently on the page. What is the best solution technically and visually for combining