IvanJosipovic / BlazorTable

Blazor Table Component with Sorting, Paging and Filtering
https://BlazorTable.netlify.app
MIT License
540 stars 109 forks source link

[Feat] Multiple Filters per columns #395

Open misterbee180 opened 1 year ago

misterbee180 commented 1 year ago

It'd be great if we could have multiple filters per column.

I've tried to implement it myself and the main hurdle I'm encountering is when the table re-builds itself, I need to somehow split the filter expression into the base pieces that constructed it originally which is proving problematic.

The simple work around for this is to expect an array of filters per column and create a filter display per column filter, but that is not trivial either.