PrimeNG.TableFilter
PrimeNG.TableFilter copied to clipboard
Helper for use the PrimeNG table load lazy filter in backend use LINQ to Entity
Hi, I have noticed a small discrepancy in the way that MultiSelects work with Filtering - there appears to be a difference between unchecking all the items, and using the...
Is it supported to filter nested object properties like following example? ``` c# class Company { string Id; Website website; } class Website { string Id; string url; } ```...
First of all, thanks **a lot** for this project, it's really helpful for implementing lazy loading with Prime NG tables. ## 1. Case sensitivity I'm trying on my side to...
Hello again! I noticed that your lib doesn't support enums. I fixed it like this: - https://github.com/Kusumoto/PrimeNG.TableFilter/blob/master/PrimeNG.TableFilter/Core/LinqOperator.cs line 244 ```if (propertyType == typeof(bool) || propertyType == typeof(bool?) || propertyType.IsEnum)``` -...
When applying a filter on a key of type string which is NULL the code goes into an error: "Object reference not set to an instance of an object" While...
Filter is not working Barcodes property shown below entity. I'm using postresql and Barcodes column is text[] type. I can filter Barcodes with efcore `_context.Products.where(w=>w.Barcodes.Contains("barcode")).ToList()` linq query. There is no...
I noticed the global filters are not working. Made a quick work around to handle: ``` protected virtual void ProvisionGlobalSearchPayload(ref TableFilterModel tableFilterPayload, string[] props) { if (!tableFilterPayload.Filters.ContainsKey("global")) return; foreach (var...
First of all thank you for this great library 👍 Now, for the issue: Even though whole PrimeNG.TableFilter API is async in nature there is one synchronous call in extension...