RadzenDataFilter that filters DataGrid based on Regular Expression?

HI I am a great fan of Radzen elements. I use RadzenDataFilter to filter Entity Framework IQueryable.

But I need to have a regex filter option where I can filter any typeof(string) based on some regular expression input like ^P.*

I need a new FilterOperator. Like a FilterOperator.Match or something like that.

How should I go about this?

I’m afraid there is no such LINQ operator - the closest is Contains().

Is it possible to do some custom filtering on the datagrid?

Yes, you can use LoadData event to apply your own custom filtering login and assign the Data and Count to the DataGrid. Check our demos for reference.