Load-On-Demand Hierarchy
RELATED VIDEOS |
---|
|Event Based Hierarchies with RadGridView for WinForms
In this video, you will learn how to automatically and manually create object relational hierarchies in RadGridView for WinForms.||
In many cases you may need to load your data not when RadGridView is being initialized, but at a later moment, when you interact with RadGridView or with your application. For example, a child template can be loaded on demand to delay the initialization of a resource-demanding feature of the application until it is required. In order to load a GridViewTemplate
on demand, you should follow these high-level steps:
Create and define a columns schema for the presented data at the first level of the hierarchy.
Create and define a columns schema for the presented data at the child
GridViewTemplate
.Create and associate a
GridViewEventDataProvider
with the childGridViewTemplate
.Handle the RowSourceNeeded event to populate the data for each parent row.
Calling the the BestFitColumns method may cause the grid to load all the data explicitly. Call this method with the BestFitColumnMode.DisplayedCells parameter for the visual cells only.
Sample Load-On-Demand Scenario
The following example shows a load-on-demand scenario using a typed DataSet. Let's load the following Products
data from the AdventureWorks database:
Steps to create a Load-On-Demand hierarchy mode:
1. First, create a columns schema for the first (parent) level of the hierarchy. If RadGridView is in a data-bound mode and we do not need to set a custom schema, we can just set the DataSource property which will set the schema and will populate the parent level with data. You can also set the AutoSizeColumnsMode to Fill to get a better view of the data:
2. Then, create a Child template and a columns schema for the "Product" data:
3. Setup the load-on-demand mode by using GridViewEventDataProvider and RowSourceNeeded event:
4. Load the data on demand for an expanded parent row by using the RowSourceNeeded event:
You should make sure that there is a relation between the tables in the dataset. In the bellow example the relation name is "ProductModel_Product" and the relation is between the ProductModelID field in both tables.
This new event based hierarchy mode can be used in different lazy loading scenarios including ORM frameworks, WCF services or complex business objects.