2X faster development
The ultimate WPF UI toolkit to boost your development speed.
The filtering is not work in the search operation while binding a DataTable to the WPF DataGrid (SfDataGrid). So, you need to convert the DataTable into Dynamic collection to filter the records while searching. C#: private DataTable dataTableCollection; //Gets the data for DataTable object. dataTableCollection = GetGridData(); //Convert DataTable collection as Dyanamic collection. var dynamicCollection = new ObservableCollection<dynamic>(); foreach (DataRow row in dataTableCollection.Rows) { dynamic dyn = new ExpandoObject(); dynamicCollection.Add(dyn); foreach (DataColumn column in dataTableCollection.Columns) { var dic = (IDictionary<string, object>)dyn; dic[column.ColumnName] = row[column]; } } DynamicOrders = dynamicCollection; |
2X faster development
The ultimate WPF UI toolkit to boost your development speed.
This page will automatically be redirected to the sign-in page in 10 seconds.