|
@@ -649,12 +649,13 @@ namespace InABox.DynamicGrid
|
|
|
var parent = iProp.GetParentWithEditor();
|
|
|
if(parent is not null)
|
|
|
{
|
|
|
- var parentEditor = parent.Editor;
|
|
|
+ var parentEditor = parent.Editor?.CloneEditor();
|
|
|
|
|
|
if(parentEditor is not null)
|
|
|
{
|
|
|
OnGridCustomiseEditor?.Invoke(this, new DynamicGridColumn { ColumnName = parent.Name }, parentEditor);
|
|
|
}
|
|
|
+
|
|
|
if(parentEditor is not null && parentEditor.Editable.EditorVisible())
|
|
|
{
|
|
|
var page = string.IsNullOrWhiteSpace(parentEditor.Page)
|