Hello,
I have a question about binding typed lists to Infragistics’ UltraWinGrid.
My typed list has a 1:m relationship in it similar to the standard Customer -> Orders example.
I retrieve the data like this:
ListTypedList lst = new ListTypedList();
lst.Fill();
And I bind it to my grid like this:
ultraGrid1.DataSource = lst;
ultraGrid1.DataBind();
This is simple, elegant and appears to work correctly. The grid displays the records including the data pulled from the Orders relationship.
The issue is that when I go to modify a cell I get a “Read Only” error. From my research it seems that typed lists are read only and cannot be used in this manner.
Is there a similar way to populate the grid that includes my 1:m relationship?
It seems to me that my code should work and that there should be a way to get a list of changes from the typed list that I could subsequently use to persist to a database.
Thank you in advance,
Rick