Description
When scrolling around in the QuickGrid virtualization sample it makes a lot of small requests to the FDA.gov API server. I really don't think it's a good idea to use this server for a production demo if hitting the down arrow 1-4 times or clicking the scrollbar once is enough to kick off a network request. The response times are already upwards of 100ms for me and I feel like if we generate load on it from our documentation they're going to block us outright, it would be better to leave this API to be used by people who need it. The sample should probably hit a synthetic API endpoint that just does a sleep() of sufficient length to let the user see the virtualization.
The tuning values for the sample would also need to be adjusted if using a third party's server, I think, so that it generates fewer, larger requests. But it's better to not need to worry about it.