Hi all,
I have a DataGridControl in XAML. Now to load this datagrid i am creating a DataGridCollectionView in code behind and assigning the DataTable from database to this DataGridCollectionView & using DataGridControl.ItemsSource = DataGridCollectionView . As in my application the data in database keeps on changing so i want to show the new data from database. For this i am using a timer. In this timer i am again creating a DataGridCollectionView and assigning the new DataTable from database. This works fine but the problem is arrises when the user changes the coloumn width or the filltering , on relaoding instesd of taking the new widths or filters it is taking the default one , so i want to keep the user changes as it is .
Thanks