This question is locked. New answers and comments are not allowed.
I have a gridview which has two defined columns:
| <telerikGridView:RadGridView.Columns> |
| <telerikGridView:GridViewSelectColumn /> |
| <telerikGridView:GridViewColumn Header="Message" /> |
| </telerikGridView:RadGridView.Columns> |
In code I bind a list of Obeservable Objects to the grid.
| gdObjects.ItemsSource = lstCO; |
I now have a second list of Observable Objects (lstCO2) which holds the same type of Objects as bound to the grid.
I want this list to be the detailed row list. This second list can have the same Objects but with different PropertyValues. I want the user to be able to expand a row and see this second Object. Object has a Property Id to use to match it.
I can't define a template for this grid because this grid will be used for other objects too, the AutoGenerateColumns is set to True.
It the should look something like:
+ ObjectName1 | PropValue1 | PropValue2
- ObjectName2 | PropValue1 | PropValue2
> ObjectName | OtherPropValue1 | PropValue2
Where > is the expanded row and + is still collapsed. Can someone put me in the right direction?