Browse by Tags
All Tags » Columns » AutoCreateColumns (RSS)
-
Is there any particular reason CellEditor in following code will not work. I need to set columns of DataGridControl manually. When I do this columns are displayed properly but editing does not work at all.
I have tested different cell editors (standard and read from resource), set AutoCreateColumns to true/false, surrounded column creation code ...
-
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 ...
|
|
|
|