@if (EnabAbbrev)
{
| @(Abbrev(item.Key, MaxKeyChar)) |
@@ -50,7 +50,7 @@
else
{
@item.Key |
- @item.Value |
+ @item.Value |
}
@if (!string.IsNullOrEmpty(keySelected) && item.Key.Equals(keySelected))
@@ -69,8 +69,11 @@
}
-
diff --git a/LiMan.UI/Components/ListInfoShort.razor.cs b/LiMan.UI/Components/ListInfoShort.razor.cs
index 6c4e4cd..6676a8a 100644
--- a/LiMan.UI/Components/ListInfoShort.razor.cs
+++ b/LiMan.UI/Components/ListInfoShort.razor.cs
@@ -59,6 +59,7 @@ namespace LiMan.UI.Components
protected void setNumRec(int newNum)
{
+ currPage = 1;
numRecord = newNum;
ReloadData();
isLoading = false;
diff --git a/LiMan.UI/Components/ListInstallazioni.razor b/LiMan.UI/Components/ListInstallazioni.razor
index 02f63ab..c6083aa 100644
--- a/LiMan.UI/Components/ListInstallazioni.razor
+++ b/LiMan.UI/Components/ListInstallazioni.razor
@@ -81,6 +81,9 @@
}
\ No newline at end of file
diff --git a/LiMan.UI/Components/ListInstallazioni.razor.cs b/LiMan.UI/Components/ListInstallazioni.razor.cs
index 291cce3..bc76a36 100644
--- a/LiMan.UI/Components/ListInstallazioni.razor.cs
+++ b/LiMan.UI/Components/ListInstallazioni.razor.cs
@@ -82,14 +82,15 @@ namespace LiMan.UI.Components
await ReloadAllData();
}
- protected async Task PagerReloadNum(int newNum)
+ protected async Task SetNumRec(int newNum)
{
+ currPage = 1;
numRecord = newNum;
await ReloadAllData();
isLoading = false;
}
- protected async Task PagerReloadPage(int newNum)
+ protected async Task SetPageNum(int newNum)
{
currPage = newNum;
await ReloadAllData();
diff --git a/LiMan.UI/Components/ListInstallazioniGLS.razor b/LiMan.UI/Components/ListInstallazioniGLS.razor
index 73b693c..56ee533 100644
--- a/LiMan.UI/Components/ListInstallazioniGLS.razor
+++ b/LiMan.UI/Components/ListInstallazioniGLS.razor
@@ -73,6 +73,9 @@
}
\ No newline at end of file
diff --git a/LiMan.UI/Components/ListInstallazioniGLS.razor.cs b/LiMan.UI/Components/ListInstallazioniGLS.razor.cs
index f29306b..6550673 100644
--- a/LiMan.UI/Components/ListInstallazioniGLS.razor.cs
+++ b/LiMan.UI/Components/ListInstallazioniGLS.razor.cs
@@ -73,14 +73,15 @@ namespace LiMan.UI.Components
await ReloadAllData();
}
- protected async Task PagerReloadNum(int newNum)
+ protected async Task SetNumRec(int newNum)
{
+ currPage = 1;
numRecord = newNum;
await ReloadAllData();
isLoading = false;
}
- protected async Task PagerReloadPage(int newNum)
+ protected async Task SetNumPage(int newNum)
{
currPage = newNum;
await ReloadAllData();
diff --git a/LiMan.UI/Components/ListLicenze.razor b/LiMan.UI/Components/ListLicenze.razor
index cb7f050..231585d 100644
--- a/LiMan.UI/Components/ListLicenze.razor
+++ b/LiMan.UI/Components/ListLicenze.razor
@@ -226,6 +226,9 @@
}
\ No newline at end of file
diff --git a/LiMan.UI/Components/ListLicenze.razor.cs b/LiMan.UI/Components/ListLicenze.razor.cs
index 0d582b8..7385541 100644
--- a/LiMan.UI/Components/ListLicenze.razor.cs
+++ b/LiMan.UI/Components/ListLicenze.razor.cs
@@ -173,14 +173,15 @@ namespace LiMan.UI.Components
await ReloadAllData();
}
- protected async Task PagerReloadNum(int newNum)
+ protected async Task SetNumRec(int newNum)
{
+ currPage = 1;
numRecord = newNum;
await ReloadAllData();
isLoading = false;
}
- protected async Task PagerReloadPage(int newNum)
+ protected async Task SetNumPage(int newNum)
{
currPage = newNum;
await ReloadAllData();
diff --git a/LiMan.UI/Components/ListLicenzeGLS.razor b/LiMan.UI/Components/ListLicenzeGLS.razor
index 4a249ec..67274fb 100644
--- a/LiMan.UI/Components/ListLicenzeGLS.razor
+++ b/LiMan.UI/Components/ListLicenzeGLS.razor
@@ -152,6 +152,9 @@
}
\ No newline at end of file
diff --git a/LiMan.UI/Components/ListLicenzeGLS.razor.cs b/LiMan.UI/Components/ListLicenzeGLS.razor.cs
index f8d2e78..7412332 100644
--- a/LiMan.UI/Components/ListLicenzeGLS.razor.cs
+++ b/LiMan.UI/Components/ListLicenzeGLS.razor.cs
@@ -98,14 +98,15 @@ namespace LiMan.UI.Components
await ReloadAllData();
}
- protected async Task PagerReloadNum(int newNum)
+ protected async Task SetNumRec(int newNum)
{
+ currPage = 1;
numRecord = newNum;
await ReloadAllData();
isLoading = false;
}
- protected async Task PagerReloadPage(int newNum)
+ protected async Task SetNumPage(int newNum)
{
currPage = newNum;
await ReloadAllData();
diff --git a/LiMan.UI/Components/ListReleases.razor b/LiMan.UI/Components/ListReleases.razor
index 156e9bb..ceb7d53 100644
--- a/LiMan.UI/Components/ListReleases.razor
+++ b/LiMan.UI/Components/ListReleases.razor
@@ -96,6 +96,9 @@
}
\ No newline at end of file
diff --git a/LiMan.UI/Components/ListReleases.razor.cs b/LiMan.UI/Components/ListReleases.razor.cs
index 4beb2a8..a30d5ba 100644
--- a/LiMan.UI/Components/ListReleases.razor.cs
+++ b/LiMan.UI/Components/ListReleases.razor.cs
@@ -100,6 +100,7 @@ namespace LiMan.UI.Components
protected async Task SetNumRec(int newNum)
{
+ currPage = 1;
numRecord = newNum;
await AppMServ.NumRowGridSet(gridKey, newNum);
await ReloadAllData();
diff --git a/LiMan.UI/Components/StatsCallList.razor b/LiMan.UI/Components/StatsCallList.razor
index e640395..3999b85 100644
--- a/LiMan.UI/Components/StatsCallList.razor
+++ b/LiMan.UI/Components/StatsCallList.razor
@@ -84,7 +84,10 @@
}
diff --git a/LiMan.UI/Components/StatsCallList.razor.cs b/LiMan.UI/Components/StatsCallList.razor.cs
index 686ebe4..fa52316 100644
--- a/LiMan.UI/Components/StatsCallList.razor.cs
+++ b/LiMan.UI/Components/StatsCallList.razor.cs
@@ -53,14 +53,14 @@ namespace LiMan.UI.Components
await ReloadAllData();
}
- protected async Task PagerReloadNum(int newNum)
+ protected async Task SetNumRec(int newNum)
{
numRecord = newNum;
await ReloadAllData();
isLoading = false;
}
- protected async Task PagerReloadPage(int newNum)
+ protected async Task SetNumPage(int newNum)
{
currPage = newNum;
await ReloadAllData();
diff --git a/LiMan.UI/Components/TargetSetup.razor b/LiMan.UI/Components/TargetSetup.razor
index 3b9904f..72075fb 100644
--- a/LiMan.UI/Components/TargetSetup.razor
+++ b/LiMan.UI/Components/TargetSetup.razor
@@ -69,8 +69,7 @@
{
-
- @if (item.Idx == 1)
+ @if (item.Idx == 1)
{
}
diff --git a/LiMan.UI/Components/Tickets.razor b/LiMan.UI/Components/Tickets.razor
index 8ceb2b7..e43c078 100644
--- a/LiMan.UI/Components/Tickets.razor
+++ b/LiMan.UI/Components/Tickets.razor
@@ -130,7 +130,10 @@
diff --git a/LiMan.UI/Components/Tickets.razor.cs b/LiMan.UI/Components/Tickets.razor.cs
index b69fd3b..752ffaa 100644
--- a/LiMan.UI/Components/Tickets.razor.cs
+++ b/LiMan.UI/Components/Tickets.razor.cs
@@ -127,14 +127,15 @@ namespace LiMan.UI.Components
await ReloadAllData();
}
- protected async Task PagerReloadNum(int newNum)
+ protected async Task SetNumRec(int newNum)
{
+ currPage = 1;
numRecord = newNum;
await ReloadAllData();
isLoading = false;
}
- protected async Task PagerReloadPage(int newNum)
+ protected async Task SetNumPage(int newNum)
{
currPage = newNum;
await ReloadAllData();
diff --git a/LiMan.UI/Components/UserMan.razor b/LiMan.UI/Components/UserMan.razor
index db63488..3e79e0c 100644
--- a/LiMan.UI/Components/UserMan.razor
+++ b/LiMan.UI/Components/UserMan.razor
@@ -199,6 +199,9 @@
\ No newline at end of file
diff --git a/LiMan.UI/Components/UserMan.razor.cs b/LiMan.UI/Components/UserMan.razor.cs
index 33b8617..df15c68 100644
--- a/LiMan.UI/Components/UserMan.razor.cs
+++ b/LiMan.UI/Components/UserMan.razor.cs
@@ -113,6 +113,7 @@ namespace LiMan.UI.Components
protected async Task SetNumRec(int newNum)
{
+ currPage = 1;
numRecord = newNum;
currPage = 1;
await InvokeAsync(ReloadData);
diff --git a/LiMan.UI/LiMan.UI.csproj b/LiMan.UI/LiMan.UI.csproj
index ab76d12..55a7443 100644
--- a/LiMan.UI/LiMan.UI.csproj
+++ b/LiMan.UI/LiMan.UI.csproj
@@ -2,7 +2,7 @@
net6.0
- 2.1.2503.2518
+ 2.1.2504.0316
LiMan.UI
LiMan.UI
diff --git a/LiMan.UI/Pages/LicenseManager.razor b/LiMan.UI/Pages/LicenseManager.razor
index 0b6c8c6..d139046 100644
--- a/LiMan.UI/Pages/LicenseManager.razor
+++ b/LiMan.UI/Pages/LicenseManager.razor
@@ -96,6 +96,9 @@
}
\ No newline at end of file
diff --git a/LiMan.UI/Pages/LicenseManager.razor.cs b/LiMan.UI/Pages/LicenseManager.razor.cs
index c3a8eee..8a17fc7 100644
--- a/LiMan.UI/Pages/LicenseManager.razor.cs
+++ b/LiMan.UI/Pages/LicenseManager.razor.cs
@@ -128,14 +128,15 @@ namespace LiMan.UI.Pages
await ReloadAllData();
}
- protected async Task PagerReloadNum(int newNum)
+ protected async Task SetNumRec(int newNum)
{
+ currPage = 1;
numRecord = newNum;
await ReloadAllData();
isLoading = false;
}
- protected async Task PagerReloadPage(int newNum)
+ protected async Task SetCurrPage(int newNum)
{
currPage = newNum;
await ReloadAllData();
diff --git a/LiMan.UI/Resources/ChangeLog.html b/LiMan.UI/Resources/ChangeLog.html
index 6046949..e9ba6d4 100644
--- a/LiMan.UI/Resources/ChangeLog.html
+++ b/LiMan.UI/Resources/ChangeLog.html
@@ -1,6 +1,6 @@
License Manager
- Versione: 2.1.2503.2518
+ Versione: 2.1.2504.0316
Note di rilascio:
-
diff --git a/LiMan.UI/Resources/VersNum.txt b/LiMan.UI/Resources/VersNum.txt
index 2f463bf..753de7c 100644
--- a/LiMan.UI/Resources/VersNum.txt
+++ b/LiMan.UI/Resources/VersNum.txt
@@ -1 +1 @@
-2.1.2503.2518
+2.1.2504.0316
diff --git a/LiMan.UI/Resources/manifest.xml b/LiMan.UI/Resources/manifest.xml
index db66d5a..5869473 100644
--- a/LiMan.UI/Resources/manifest.xml
+++ b/LiMan.UI/Resources/manifest.xml
@@ -1,6 +1,6 @@
-
- 2.1.2503.2518
+ 2.1.2504.0316
https://nexus.steamware.net/repository/SWS/LiMan/stable/LAST/LiMan.UI.zip
https://nexus.steamware.net/repository/SWS/LiMan/stable/LAST/ChangeLog.html
false
|