Browse Source

Workaround for weird error

frogsoftware 9 months ago
parent
commit
d45a20f94f
1 changed files with 8 additions and 1 deletions
  1. 8 1
      inabox.wpf/DynamicGrid/DynamicGrid.cs

+ 8 - 1
inabox.wpf/DynamicGrid/DynamicGrid.cs

@@ -1074,7 +1074,14 @@ public abstract class DynamicGrid<T> : DynamicGrid, IDynamicGridUIComponentParen
                             MasterData = table;
                             Dispatcher.Invoke(() =>
                             {
-                                ProcessData(null);
+                                try
+                                {
+                                    ProcessData(null);
+                                }
+                                catch (Exception e)
+                                {
+                                    
+                                }
                                 DoAfterRefresh();
                                 bRefreshing = false;
                                 IsReady = true;