Using Northwind database one of the examples shows loading the Customer table using WCF Ria Services.. How can that program be modified to show the customer orders in the same RadGridView. Also, I only want to retrieve and show the orders for the selected customer.
Thanks
Rich
3 Answers, 1 is accepted
0
Vlad
Telerik team
answered on 06 Jul 2010, 06:23 AM
Hi,
You cannot have both Orders for every Customer and Orders only for selected Customer and all these in the same grid. Can you post more info about your scenario? Do you need master/details with two grids or hierarchical grid?
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Public Issue Tracking
system and vote to affect the priority of the items
That example helped a lot. Staying with that example I wanted to try out binding a column dynamically. I commented out the Country column in the xaml and tried to add programatically. It failed with a Invalid Binding Path exception. If I omit the DataMemberBinding the Country column shows up but of course no data.
new System.Windows.Data.Binding("{Binding Country}");
}
0
Vlad
Telerik team
answered on 08 Jul 2010, 08:12 AM
Hello,
The correct binding should be:
new System.Windows.Data.Binding("Country")
Regards,
Vlad
the Telerik team
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Public Issue Tracking
system and vote to affect the priority of the items