Welcome to the Xceed Community Sign in | Join | Help
Community Search  

Browse by Tags

All Tags » DataGridCollectionView   (RSS)
  • How to setup XAML for Master/Child based on nested ObservableCollections?

    I have an ObservableCollection one of whose member properties is an ObservableCollection. I can get the first level to display correctly, but haven't much idea on how to get the nested collection working. I have tried setting up the DataRelationDetailDescription and DetailConfiguration tags but I don't see where the binding to the nested ...
    Posted to Xceed DataGrid for WPF (Forum) by Peter on May 13, 2008
  • Re: Master/Detail Grid

    Master/detail is supported through the DataGridCollectionView[Source]. In the example you provide, you initially bind the grid to the DataGridCollectionViewSource that has the Assignments as a source; however, in the Loaded event, you then reassign Assignment's DefaultView to the grid's ItemsSource property, removing the master/detail ...
    Posted to Xceed DataGrid for WPF (Forum) by Jenny on April 29, 2008
  • ComboBox in DataGrid column

    Hi,I'm having trouble displaying a combox as a cell content in the datagrid.I'm using a DataSet as the DataContext. I currently have two tables: 1. The data for the grid (named ItemList with the columns Name and UnitId)2. The the data for the combobox (named Units with the columns Id and Description) The column UnitId in table ItemList references ...
    Posted to Xceed DataGrid for WPF (Forum) by Anders Daling on April 21, 2008
  • Re: dataviews in DataGrids

    1-  you can do it this way://if starting from a DataTable reference.myDataGridControl.ItemsSource = new DataGridCollectionView( myDataTable.DefaultView );//directly from a DataViewmyDataGridControl.ItemsSource = new DataGridCollectionView( myDataView );2- You can specify to the DataGridControl NOT to create its columns automatically based on ...
    Posted to Xceed DataGrid for WPF (Forum) by Marcus on April 18, 2008
Contact | Site Map | Reviews | Legal Terms of Use | Trademarks | Privacy Statement Copyright 2008 Xceed Software Inc.