Skip to content

Commit a4ffd32

Browse files
committed
Example is working as intended, Advanced example available
1 parent 803bdb3 commit a4ffd32

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

SimpleDataGrid/Pagination/PagedCollection.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,10 @@ private static string WildcardToRegex(string pattern)
469469
/// Gets a value indicating whether there is a previous page.
470470
/// </summary>
471471
public bool HasPrevious => _currentPage > 0;
472-
472+
/// <summary>
473+
/// Gets the keys of the active filters.
474+
/// </summary>
475+
public IReadOnlyCollection<string> ActiveFilters => GetActiveFilters();
473476
/// <summary>
474477
/// Moves to the next page.
475478
/// </summary>

0 commit comments

Comments
 (0)