resolve issue in making Pager search work with sorting

This commit is contained in:
sbwalker
2023-10-16 08:03:31 -04:00
parent c62d147254
commit a0e289dcd6
2 changed files with 8 additions and 2 deletions

View File

@ -295,6 +295,10 @@
if (!string.IsNullOrEmpty(SearchProperties))
{
AllItems = Items; // only used in search
if (!string.IsNullOrEmpty(_search))
{
Search();
}
}
if (!string.IsNullOrEmpty(PageSize))