- Possibilità di nascondere figli multipli nella pagina con la gerarchia
- Gestione bottom rail del frame
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user