Hi!
In custom field there is a possibility to databind period-delimited hierarchical object.
Like:
Binding b = new Binding("Text", ds, "customer.Order.OrderAmount");
But what I'm truely miss is to bind a period-delimeted hierarchical object to the datagrid column.
this.ColumnProductName.DataPropertyName = "Product.Name";
this.ColumnProductName.HeaderText = "Product in database";
this.ColumnProductName.Name = "ColumnProductName";
The result column values will be empty, altough when I debug this IList<Orders> list then there is all data present.
So it seems that grid columns does not support this kind of hierarchical databinding likeother controlsthat using Binding object and period-delimited hierarchical databindingscenarios like "Product.Name" :(
Is there a work around of this ???
ps: ColumnProductName is aDataGridViewTextBoxColumn