fix numRow errato in orderSearch

This commit is contained in:
Samuele Locatelli
2025-03-20 10:17:55 +01:00
parent 0935eda0f9
commit ceffa2e175
2 changed files with 3 additions and 1 deletions
+1 -1
View File
@@ -59,7 +59,7 @@
<small>Preview limited to 1000 results for performances reason, at least 1 parameter to search</small>
</div>
<div class="col-3 col-md-2 col-lg-1">
<uc1:cmp_numRow runat="server" ID="cmp_numRow" numRow="20" />
<uc1:cmp_numRow runat="server" ID="cmp_numRow" />
</div>
</div>
</div>
+2
View File
@@ -109,6 +109,8 @@ namespace NKC_WF.site
if (!Page.IsPostBack)
{
((SiteMaster)this.Master).showSearch = false;
cmp_numRow.numRow = 20;
cmp_OrderSearch.numRow = cmp_numRow.numRow;
doUpdate();
}