- Gestito salvataggio e chiusura componente con salvataggio jwd
- Correzioni valori nulli - Aggiunta funzione per calcolare altezza sashGroup
This commit is contained in:
@@ -231,7 +231,11 @@ namespace WebWindowComplex.Compo
|
||||
continue;
|
||||
}
|
||||
if(itemSameCol.Count > 0)
|
||||
return RowCollapsedDict.GetValueOrDefault(itemSameCol.First().Row - 1);
|
||||
{
|
||||
ItemTable? firstItem = itemSameCol.FirstOrDefault();
|
||||
if (firstItem != null)
|
||||
return RowCollapsedDict.GetValueOrDefault(firstItem.Row - 1);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user