DateTime Quickfilter without range #7286
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Check our sample about quick filter customization. https://demo.serenity.is/AdvancedSamples/QuickFilterCustomization With similar approach (for old version you may need to checkout older commit to see code) you can add datetime editor for quick filter and modify the grid request criteria.
|
Beta Was this translation helpful? Give feedback.
Check our sample about quick filter customization. https://demo.serenity.is/AdvancedSamples/QuickFilterCustomization
With similar approach (for old version you may need to checkout older commit to see code) you can add datetime editor for quick filter and modify the grid request criteria.
create a range editor for freight
sample demonstrate how to add new custom quick filter to your grid. InsteadDecimalEditor
you need to use DateEditor and in criteria you need to send criteria where is the date is bigger or less than the selected date.https://github.com/serenity-premium/StartSharp/blob/master/pro-features/src/Serenity.Demo.AdvancedSamples/Modules/Grids/QuickFilterCustomization/QuickFilt…