Aggiornati elenchi con bottoni

This commit is contained in:
Annamaria Sassi
2026-03-09 15:59:57 +01:00
parent 197c7e277a
commit 424357ffab
12 changed files with 419 additions and 114 deletions
+8 -8
View File
@@ -397,7 +397,7 @@ namespace WebWindowComplex
protected Task DoClose()
{
editLock = false;
Log.Info("Richietsa Chiusura");
Log.Info("Richiesta Chiusura");
//return EC_OnClose.InvokeAsync(false);
if (m_CurrWindow != null)
{
@@ -437,7 +437,7 @@ namespace WebWindowComplex
// verifico variazione JWD
if (!prevJwd.Equals(CurrJwd) || doForce || prevReq != (int)DataReq.ReqSvg)
{
Log.Info("Richietsa svg");
Log.Info("Richiesta svg");
prevJwd = CurrJwd;
prevReq = (int)DataReq.ReqSvg;
Dictionary<string, string> Args = new Dictionary<string, string>();
@@ -466,7 +466,7 @@ namespace WebWindowComplex
// verifico variazione JWD
if (!prevJwd.Equals(CurrJwd) || isFirst || prevReq != (int)DataReq.ReqHwOpt)
{
Log.Info("Richietsa Hardware option");
Log.Info("Richiesta Hardware option");
prevJwd = CurrJwd;
prevReq = (int)DataReq.ReqHwOpt;
Dictionary<string, string> Args = new Dictionary<string, string>();
@@ -498,7 +498,7 @@ namespace WebWindowComplex
if (!prevJwd.Equals(CurrJwd) || prevReq != (int)DataReq.ReqShape)
//if (!prevLiveData.CurrJwd.Equals(CurrJwd))
{
Log.Info("Richietsa shape");
Log.Info("Richiesta shape");
prevJwd = CurrJwd;
prevReq = (int)DataReq.ReqShape;
Dictionary<string, string> Args = new Dictionary<string, string>();
@@ -528,7 +528,7 @@ namespace WebWindowComplex
// verifico variazione JWD
if (!prevJwd.Equals(CurrJwd) || prevReq != (int)DataReq.ReqElement)
{
Log.Info("Richietsa Profili Elementi");
Log.Info("Richiesta Profili Elementi");
prevJwd = CurrJwd;
prevReq = (int)DataReq.ReqElement;
Dictionary<string, string> Args = new Dictionary<string, string>();
@@ -547,7 +547,7 @@ namespace WebWindowComplex
/// </summary>
protected Task DoReset()
{
Log.Info("Richietsa reset");
Log.Info("Richiesta reset");
return Task.CompletedTask;
// Da fare
}
@@ -559,7 +559,7 @@ namespace WebWindowComplex
protected Task DoSave()
{
editLock = false;
Log.Info("Richietsa Salvataggio");
Log.Info("Richiesta Salvataggio");
//return EC_OnClose.InvokeAsync(false);
if (m_CurrWindow != null)
{
@@ -654,7 +654,7 @@ namespace WebWindowComplex
{
listErrLink.Add("Window", $"Deserializing Error:{Environment.NewLine}{ex}");
Log.Error($"Errore nel deserializzare jwd: {ex.Message}");
// uso un oggetto "basico" per non fermarmi
// costruisco una finestra base
WindowFromJson = BuildFrameDefault();
await DoPreviewSvg(true);
}