Hi,
has anybody faced with such issues:
In our scenario, we have "Customer" business object ( master )which has "Orders" property of "Order" type ( details ).
Each "Order" business object has "Orders" property.
We need to build next master-details table:
Customer ( master )
Customer.Orders ( detail level 1 )
Order.Orders ( detail level 1 )
Order.Orders( detail level 2 )
.......................
When we provide custom DetailDescription that returns "Orders" property value via reflection,
We are able to see only one-level details drill-down:
Customer
Orders
Other nested details are missing.
We need to show other nested details ( and we do not know how much there will be nested orders ), how could this be achieved ?
Another question is, is it possible to provide detail configuration "on the fly" :
say, in our custom DetailDescription,
if parentItem is "TypeA", we return "PropertyA". and show columns A, B,C.
if parentItem is "TypeB", we return "PropertyB". and show another columns.
That will be realy nice and powerful feature to display ritch hieararchical data.
thanks in advance,
my best regards,
Volodymyr Fedyk