Browse by Tags
All Tags » LINQ (RSS)
-
The ''Binding to a LINQ query (XML) example in the documentation should help you get started:
<Grid xmlns:xcdg=''http://schemas.xceed.com/wpf/xaml/datagrid''> <Grid.Resources>
<xcdg:DataGridCollectionViewSource ...
-
<Grid xmlns:xcdg=''http://schemas.xceed.com/wpf/xaml/datagrid''><Grid.Resources>
<xcdg:DataGridCollectionViewSource ...
-
Have you set the AutoCreateColumns property to false? If so, cell editors need to be explicitly provided for each column in order to support insertion (see Column.CellEditor property).
-
IBindingList implements IEnumerable; therefore, as long as you are returning an IBindingList and its AllowNew property returns true you should have no issues inserting items in details.
Take a look at the Creating a Custom Detail Description example in the documentation. In the GetDetailsForParentItem, I return a new BindingList as such (using ...
-
Hi
I've got a Master Detail grid bound to a BindingList of objects returned from Linq. I've got almost everything working. I can add items to the Master level, I can edit items in the master level etc. This was not easy. I had to override a bunch of classes to get this to work the way I wanted it to work.
To get the details view, I've ...
|
|
|
|