This question is locked. New answers and comments are not allowed.
Hi,
We have a RadGridView used in one of our .xaml file. This GridView is used to show customer data. The customers are grouped based on the customer type in the grid. Currently the data being displayed in the GridView is in this format:
We want the Header of the gridview to be displayed for each group
===========================================================
CustomerName OrderCount Latest Order Date ( Column Headers)
CustomerType - A (Group Header)
Customer1 5 1/1/2000
Customer2 6 1/4/2000
CustomerType - B (Group Header)
Customer3 5 1/1/2000
Customer4 6 1/4/2000
===========================================================
This is the tag details currently given:
We want the Header of the gridview to be displayed for each group. Instead of column headers appearing for whole grid once, we want it to be displayed for each group type.
===========================================================
CustomerType - A (Group Header)
CustomerName OrderCount Latest Order Date ( Column Headers)
Customer1 5 1/1/2000
Customer2 6 1/4/2000
CustomerType - B (Group Header)
CustomerName OrderCount Latest Order Date ( Column Headers)
Customer3 5 1/1/2000
Customer4 6 1/4/2000
===========================================================
What needs to be given/changed in the Properties for RadGridView for achieving this.
Thanks in Advance
VR
We have a RadGridView used in one of our .xaml file. This GridView is used to show customer data. The customers are grouped based on the customer type in the grid. Currently the data being displayed in the GridView is in this format:
We want the Header of the gridview to be displayed for each group
===========================================================
CustomerName OrderCount Latest Order Date ( Column Headers)
CustomerType - A (Group Header)
Customer1 5 1/1/2000
Customer2 6 1/4/2000
CustomerType - B (Group Header)
Customer3 5 1/1/2000
Customer4 6 1/4/2000
===========================================================
This is the tag details currently given:
<RadGrid:RadGridView AutoGenerateColumns="False"
ShowColumnHeaders="True"
ShowGroupPanel="False"
AutoExpandGroups
="True"
<RadGrid:RadGridView.GroupDescriptions>
<data:RadGroupDescription PropertyName="CustomerType" >
</data:RadGroupDescription>
</RadGrid:RadGridView.GroupDescriptions>
</RadGrid:RadGridView >
We want the Header of the gridview to be displayed for each group. Instead of column headers appearing for whole grid once, we want it to be displayed for each group type.
===========================================================
CustomerType - A (Group Header)
CustomerName OrderCount Latest Order Date ( Column Headers)
Customer1 5 1/1/2000
Customer2 6 1/4/2000
CustomerType - B (Group Header)
CustomerName OrderCount Latest Order Date ( Column Headers)
Customer3 5 1/1/2000
Customer4 6 1/4/2000
===========================================================
What needs to be given/changed in the Properties for RadGridView for achieving this.
Thanks in Advance
VR
