I would like to know how to display the following view model
The AssetClass in the picture is in the
I would like to know if this is possible, if we are to use the RadTreeListView.
Thank You
public class AssetClassLevelViewModel
{
public string AssetClassName {get; set;}
public ObservableCollection<AssetClassLevelViewModel> ChildAssetClasses {get; set;}
public ObservableCollection<ProductHoldingsWithAllocationViewModel> ProductHoldings {get; set;}
}
The ProductHoldingsWithAllocationViewModel has properties such as ProductName etc., which are to be displayed in columns. Attached is a sample of what it should look like.The AssetClass in the picture is in the
AssetClassLevelViewModel,
and each of the Products is represented by the ProductHoldingsWithAllocationViewModel.I would like to know if this is possible, if we are to use the RadTreeListView.
Thank You