Bläddra i källkod

Added Parent.CustomiseEditor() to DynamicGridGridUIComponent.LoadDataColumn() - missed in last commit

frankvandenbos 6 månader sedan
förälder
incheckning
bb3ab69815
1 ändrade filer med 1 tillägg och 0 borttagningar
  1. 1 0
      inabox.wpf/DynamicGrid/UIComponent/DynamicGridGridUIComponent.cs

+ 1 - 0
inabox.wpf/DynamicGrid/UIComponent/DynamicGridGridUIComponent.cs

@@ -1208,6 +1208,7 @@ public class DynamicGridGridUIComponent<T> : IDynamicGridUIComponent<T>, IDynami
 
     private void LoadDataColumn(DynamicGridColumn column)
     {
+        column.Editor = Parent.CustomiseEditor(column,column.Editor);
         if (this.CreateEditorColumn(column, out var newcol, out var prop))
         {
             newcol.GetEntity = () => _editingObject?.Object;