Hi,
I am in front of a design problem : Is there a built in component available to manage the items version in a radgridview ?
A simple view of my problem is :
assume that you have 2 Classes
B with the following fields : string Name, string field1, string field2
A with the following fields : string field1, string field2 and BsField(which is a list of instance of B)
I want to display a list of A in a radGridView and display in the row details for each A the corresponding Bs in a grid following the parent grid design:
Suppose to have the following instances
b1('b11','b12')
b2('b21','b22')
b3('b31','b32')
a1 ('a1','a11','a21',{b1,b2})
a2 ('a2','a12','a22',{b3})
I want to have the following display :
Name | field1 | field2
-----------------------------------------
+ a1 | a11 | a21
-----------------------------------------
+ a2 | a12 | a22
with the corresponding display when the row details are open
Name | field1 | field2
-----------------------------------------
- a1 | a11 | a21
-----------------------------------------
| b11 | b21
-----------------------------------------
| b12 | b22
-----------------------------------------
- a2 | a12 | a22
-----------------------------------------
| b13 | b23
I guess this behavior will be managed by the next upcoming RadTreeListView component (2010 Q2 release), but I wonder if there is an other way to do that ?
Thanks a lot
Mathieu
I am in front of a design problem : Is there a built in component available to manage the items version in a radgridview ?
A simple view of my problem is :
assume that you have 2 Classes
B with the following fields : string Name, string field1, string field2
A with the following fields : string field1, string field2 and BsField(which is a list of instance of B)
I want to display a list of A in a radGridView and display in the row details for each A the corresponding Bs in a grid following the parent grid design:
Suppose to have the following instances
b1('b11','b12')
b2('b21','b22')
b3('b31','b32')
a1 ('a1','a11','a21',{b1,b2})
a2 ('a2','a12','a22',{b3})
I want to have the following display :
Name | field1 | field2
-----------------------------------------
+ a1 | a11 | a21
-----------------------------------------
+ a2 | a12 | a22
with the corresponding display when the row details are open
Name | field1 | field2
-----------------------------------------
- a1 | a11 | a21
-----------------------------------------
| b11 | b21
-----------------------------------------
| b12 | b22
-----------------------------------------
- a2 | a12 | a22
-----------------------------------------
| b13 | b23
I guess this behavior will be managed by the next upcoming RadTreeListView component (2010 Q2 release), but I wonder if there is an other way to do that ?
Thanks a lot
Mathieu