Gridify icon indicating copy to clipboard operation
Gridify copied to clipboard

Easy and optimized way to apply Filtering, Sorting, and Pagination using text-based data.

Results 24 Gridify issues
Sort by recently updated
recently updated
newest added

### Discussed in https://github.com/alirezanet/Gridify/discussions/153 Originally posted by **Robotxm** February 21, 2024 Hello, I have following object definitions: ```c# public record Item(string Name, List Schedules); public record TimeSchedule(int Start, int End);...

enhancement

### Details Is it possible to use it with grpc services?

enhancement

### Discussed in https://github.com/alirezanet/Gridify/discussions/164 Originally posted by **ameckl** May 12, 2024 > I'm currently using Sieve's custom filter methods to achieve this functionality, but planning to migrate to Gridify. Hello,...

feature-request

There is one thing in that **awesome library** that i struggle with as much i can't overcome on my own. ### The problem What i try to achieve is a...

enhancement

### Details This example should work without creating a custom mapper. - should work for both `List` or primitives ```csharp var dataSource = new List() { new() {FavouriteColors = ["Green",...

feature-request

### Version 2.14.2 ### Details Re-creating this issue as this fix was reverted - https://github.com/alirezanet/Gridify/issues/193 I am doing filtering on List string primitive type. It works case-sensitive. However, the case-insensitive...

bug

### Details Creating filters like the below examples should be possible via `gridify-client` ``` Property[index] = foo Property[key] = bar ListOfFoo[33] = bar Dictionary[name] = john ``` so basically we...

enhancement
good first issue
gridify-client

### Version 2.14.1 ### Details **Thanks for this great library! It really is awesome!** When I attempt to submit a filter like: `name=/i` an exception is thrown: >Gridify.GridifyFilteringException: 'Unexpected token...

bug

### Details I am using Gridify in a Blazor WASM application, right now I am having to build out the GridifyQuery filter & order strings by hand. I think it...

enhancement

# Description Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. Fixes #155 Fixes #153 ## Type of change -...