- Gestito salvataggio e chiusura componente con salvataggio jwd
- Correzioni valori nulli - Aggiunta funzione per calcolare altezza sashGroup
This commit is contained in:
@@ -379,10 +379,11 @@ namespace Test.UI.Components.Pages
|
||||
/// Effettua chiusura oggetto con eventuale save
|
||||
/// </summary>
|
||||
/// <param name="reqSave"></param>
|
||||
private void CloseObj(bool reqSave)
|
||||
private void CloseObj(DataSave reqSave)
|
||||
{
|
||||
outClose = !reqSave ? "Richiesto chiusura!" : "";
|
||||
outSave = reqSave ? "Richiesto salvataggio!" : "";
|
||||
currJwd = reqSave.currJwd;
|
||||
outClose = !reqSave.open ? "Richiesto chiusura!" : "";
|
||||
outSave = reqSave.open ? "Richiesto salvataggio!" : "";
|
||||
}
|
||||
|
||||
private void ConfInit()
|
||||
|
||||
@@ -423,10 +423,11 @@ namespace Test.UI.Components.Pages
|
||||
/// Effettua chiusura oggetto con eventuale save
|
||||
/// </summary>
|
||||
/// <param name="reqSave"></param>
|
||||
private void CloseObj(bool reqSave)
|
||||
private void CloseObj(DataSave reqSave)
|
||||
{
|
||||
outClose = !reqSave ? "Richiesto chiusura!" : "";
|
||||
outSave = reqSave ? "Richiesto salvataggio!" : "";
|
||||
currJwd = reqSave.currJwd;
|
||||
outClose = !reqSave.open ? "Richiesto chiusura!" : "";
|
||||
outSave = reqSave.open ? "Richiesto salvataggio!" : "";
|
||||
}
|
||||
|
||||
private void ConfInit()
|
||||
|
||||
@@ -164,10 +164,11 @@ namespace Test.UI.Components.Pages
|
||||
/// Effettua chiusura oggetto con eventuale save
|
||||
/// </summary>
|
||||
/// <param name="reqSave"></param>
|
||||
private void CloseObj(bool reqSave)
|
||||
private void CloseObj(DataSave reqSave)
|
||||
{
|
||||
outClose = !reqSave ? "Richiesto chiusura!" : "";
|
||||
outSave = reqSave ? "Richiesto salvataggio!" : "";
|
||||
currJwd = reqSave.currJwd;
|
||||
outClose = !reqSave.open ? "Richiesto chiusura!" : "";
|
||||
outSave = reqSave.open ? "Richiesto salvataggio!" : "";
|
||||
}
|
||||
|
||||
private void ConfInit()
|
||||
|
||||
Reference in New Issue
Block a user