-
Notifications
You must be signed in to change notification settings - Fork 241
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #790 from neozhu/toolbar
Datagrid toolbar improvement
- Loading branch information
Showing
18 changed files
with
459 additions
and
787 deletions.
There are no files selected for viewing
11 changes: 0 additions & 11 deletions
11
src/Application/Common/Interfaces/MultiTenant/ITenantProvider.cs
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
src/Application/Features/PicklistSets/Specifications/PicklistSetAdvancedFilter.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,19 @@ | ||
namespace CleanArchitecture.Blazor.Application.Features.PicklistSets.Specifications; | ||
|
||
public enum PickListView | ||
{ | ||
[Description("All")] | ||
All, | ||
[Description("My")] | ||
My, | ||
[Description("Created Toady")] | ||
TODAY, | ||
[Description("Created within the last 30 days")] | ||
LAST_30_DAYS | ||
} | ||
public class PicklistSetAdvancedFilter : PaginationFilter | ||
{ | ||
public PickListView ListView { get; set; } = PickListView.All; | ||
public UserProfile? CurrentUser { get; set; } | ||
public Picklist? Picklist { get; set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.