This is a migrated thread and some comments may be shown as answers.

Double RadGrid Design...?

5 Answers 82 Views
Grid
This is a migrated thread and some comments may be shown as answers.
$uren
Top achievements
Rank 1
$uren asked on 25 May 2011, 11:29 AM
I have to create a grid like this. Its like loading double grid.
The customer data was loaded in a general grid and the aging details should load inside the main grid as shown in the Gird.

5 Answers, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 25 May 2011, 12:14 PM
Hello Suren,

You can achieve this by using Hierarchy. Check the following demo explains more about this.
Grid / Declarative Relations.

Thanks,
Princy.
0
$uren
Top achievements
Rank 1
answered on 25 May 2011, 12:51 PM
Hello Princy..!
I should not click a button to view those details.
By defaults it should display the customer's detail & aging details in the different grid.

Thanks,
Suren.
0
$uren
Top achievements
Rank 1
answered on 25 May 2011, 12:52 PM
Hello Princy..!
I should not click a button to view those details.
By defaults it should display the customer's detail & aging details in the different grid.

Thanks,
Suren.
0
Princy
Top achievements
Rank 2
answered on 25 May 2011, 01:39 PM
Hello Suren,

Set HierarchyDefaultExpanded as true in order to set the group expanded by default. In order to hide ExpandCollapseColumn, attach ColumnCreated event to your RadGrid and hide ExpandCollapseColumn. Hope this helps you.

C#:
protected void RadGrid2_ColumnCreated(object sender, GridColumnCreatedEventArgs e)
   {
       if (e.Column.UniqueName == "ExpandColumn")
       {
           e.Column.Visible = false;
       
   }

Thanks,
Princy.
0
$uren
Top achievements
Rank 1
answered on 26 May 2011, 01:30 PM
thanks Princy
I got it.... 

Suren
Tags
Grid
Asked by
$uren
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
$uren
Top achievements
Rank 1
Share this question
or