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.
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
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.
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.
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.
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#:
Thanks,
Princy.
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
I got it....
Suren