- FIX Selezione stato comemssa e filtraggio
This commit is contained in:
Samuele Locatelli
2022-09-13 14:40:54 +02:00
parent 681aa44b32
commit 00a0fc81ce
8 changed files with 80 additions and 176 deletions
+17 -2
View File
@@ -4,14 +4,14 @@
{
#region Public Events
public event Action EA_HideSearch;
public event Action EA_PageUpdated;
public event Action EA_SearchUpdated;
public event Action EA_ShowSearch;
public event Action EA_StatoSearch;
#endregion Public Events
#region Public Properties
@@ -81,6 +81,20 @@
}
}
public string StateSel
{
get => stateSel;
set
{
stateSel = value;
if (EA_StatoSearch != null)
{
EA_StatoSearch?.Invoke();
}
}
}
public string TipoSearch
{
get => tipoSearch;
@@ -135,6 +149,7 @@
private string searchVal = "";
private bool showSearch;
private string stateSel = "*";
private string tipoSearch = "*";
#endregion Private Fields