I have some Rad Data Grids in a DataList that I am using to create a variable number of grids on the page.
All these grids are loaded on the client side using page methods that are called in pageLoad method. This works for the most part, but in certain cases when there are a large number of grids on the page (more than 50 or 60) too much data is returned and the script stops running.
In order to remedy this, I'm trying to use the OnGridCreated even to load the grid specific data one at a time, instead of loading up all the Grids at once. Is there a property that I can use as sort of a bag of data accessible on the client side before the rows are bound, so I can store any arguments I need for the client side call? ClientDataKeys looks promising, but the data might always be dynamic.
What's the recommended way to do this?
All these grids are loaded on the client side using page methods that are called in pageLoad method. This works for the most part, but in certain cases when there are a large number of grids on the page (more than 50 or 60) too much data is returned and the script stops running.
In order to remedy this, I'm trying to use the OnGridCreated even to load the grid specific data one at a time, instead of loading up all the Grids at once. Is there a property that I can use as sort of a bag of data accessible on the client side before the rows are bound, so I can store any arguments I need for the client side call? ClientDataKeys looks promising, but the data might always be dynamic.
What's the recommended way to do this?