- Possibilità di nascondere figli multipli nella pagina con la gerarchia

- Gestione bottom rail del frame
This commit is contained in:
Annamaria Sassi
2026-02-10 12:17:00 +01:00
parent 3d092b53fb
commit a898ccced5
9 changed files with 377 additions and 63 deletions
+1 -1
View File
@@ -61,7 +61,7 @@ namespace WebWindowComplex.DTO
return false;
if (!DictUtils.DictAreEqual(DictShape, item.DictShape))
return false;
if (ProfElementList.Count == item.ProfElementList.Count && !ProfElementList.OrderBy(x => x).SequenceEqual(item.ProfElementList.OrderBy(x => x)))
if (ProfElementList.Count != item.ProfElementList.Count || !ProfElementList.OrderBy(x => x.GroupId).SequenceEqual(item.ProfElementList.OrderBy(x => x.GroupId)))
return false;
return true;
}