Problem with FilterValue of RadzenDataGrid' ColumnsCollection

I am working with the latest version of the Radzen.Blazor 4.15.11 package and applying filters to the columns of a grid and when I consult the public FilterValue property of RadzenDataGridColumn it is set to null, however, in the private property filterValue it does have a value.
I think this is a mistake. And in previous versions if it stored the data correctly, so I cannot recover this data.

1 Like

I have the same trouble retrieving the old FilterValue property that is private now. Is there any way to recover this property in current package distribution 4.15.11 ?

You cannot access private properties. There is a method GetFilterValue() that should be used to access the filter value.

It works! I simply had to rewrite my code. Thank you!

Perfect! Thanks! It works fine!