I'm wondering if i could find some suggestions here.
I have a radgrid with a couple thousand items. I need to process each of these items (on each time the page is loaded) and filter based on their processed status. Currently i load in a collection, process each item, remove items from the collection if needed, then bind it to the grid. in the item data bound event i update the item to show the processed status of that item.
Processing an item takes time, and processing thousands of items takes up to a minute or two. If i could just process the items in the item data bound event, then i would only be processing the items on the current page. Is there any way to remove an item from the item data bound and pull in another item from the next page? I need to keep the pages consistent so i need to keep 20 items (or whatever they choose per page) on the page.
If this is too hard to understand what i mean, i could try explaining again with an example if needed
I have a radgrid with a couple thousand items. I need to process each of these items (on each time the page is loaded) and filter based on their processed status. Currently i load in a collection, process each item, remove items from the collection if needed, then bind it to the grid. in the item data bound event i update the item to show the processed status of that item.
Processing an item takes time, and processing thousands of items takes up to a minute or two. If i could just process the items in the item data bound event, then i would only be processing the items on the current page. Is there any way to remove an item from the item data bound and pull in another item from the next page? I need to keep the pages consistent so i need to keep 20 items (or whatever they choose per page) on the page.
If this is too hard to understand what i mean, i could try explaining again with an example if needed