Browse Source

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

frankvandenbos 7 tháng trước cách đây
mục cha
commit
bb3ab69815

+ 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;