I have an Entity let's say Customer that has a property exposing a child collection of related Order. I'm trying to create a grid which has the Customer's properties displayed and editable and I'd like to have this Grid contain a column which has an inner Grid to display (and manipulate, edit, insert, delete) Order's. The outer grid works great using the DataSource control and i'd like to stick to this (very minimal coding style) if possible for the inner grid. I'm using Adapter style entities.
Oh, and i don't want to have to make the user first select a parent Customer to manipulate child Orders. I've also noticed that if I bind the inner grid to the Customer.Order property I can display records fine but I cannot get automatic insertion, deletion and updates to work without a datasource which I can completely understand however it seems to me that there must be a way of getting this to work without having to manually handle all of the events of the inner grid.
Thanks.