Row Details TemplateSelector
The RadGridView provides a RowDetailsTemplate property and different RowDetailsVisibility options. By default their values are inherited by all rows in the grid.
You can apply a RowDetailsTemplate conditionally through specifying a proper RowDetailsTemplateSelector. You can check the TemplateSelectors Overview article for more information on how to do so.
If you want to have a different template for a specific GridViewRow, you can do this through applying a RowDetailsTemplateSelector.
This article will show you how to conditionally apply a different data template to RadGridView row details using the RowDetailsTemplateSelector property.
Assume we have a RadGridView bound to a collection of clubs. Each club has a property StadiumCapacity and has row details of players that play in it. What we want to achieve is to apply one data template if the capacity is greater than 50 000 and another otherwise:
Figure 1: Displays the two different data templates for a big and small stadiums.
To do so follow these steps:
Create a new class which inherits the DataTemplateSelector class (which resides in the System.Windows.Controls assembly).
Override its SelectTemplate method(Example 1). Based on your conditions - you return the proper DataTemplate that will be applied to the framework element (RadGridView in our case).
Example 1: Custom implementation of a DataTemplateSelector
In this case we have two different DataTemplates that could be applied - bigStadium and smallStadium. Depending on the underlying data we choose / select which template to apply.
- In the XAML file define the template selector as a resource and set the properties of the bigStadium and smallStadium(Example 2).
Example 2: Definition of the bigStadium and smallStadium DataTemplates
- Finally, set the RowDetailsTemplateSelector property of RadGridView(Example 3).
Example 3: Definition of RowDetailsTemplateSelector property of RadGridView
You can download a runnable project of the demonstrated example in the online SDK repository. In addition to make finding and browsing the examples easier, you can take advantage of our SDK Samples Browser.