Hi,
SInce i have updated my project with the 5.9.5 version of Radzen, the sorting of a datagrid dynamic data doesn't work anymore.
I get this error message : "No property or field 'np' exists in type 'IDictionary`2'".
Regards,
Hi,
SInce i have updated my project with the 5.9.5 version of Radzen, the sorting of a datagrid dynamic data doesn't work anymore.
I get this error message : "No property or field 'np' exists in type 'IDictionary`2'".
Regards,
Works normally here:
Btw if you are using Dynamic LINQ separately with custom options you might need to set these due to recent Dynamic LINQ library changes:
In fact, my datagrid is a mix of datagrid dynamic data and and DataGrid LoadData.
Until now, it works but now there is an error on the LoadData event when LoadDataArgs contains OrderBy.
For example, "np(it["UniqueId"].ToString()) asc" when i try to sort the datagrid by UniqueID and now it throws an exception : No property or field 'np' exists in type 'IDictionary`2'
Did you try upgrading to the latest version of Radzen.Blazor? There was a problem with "np" but it has been fixed.
In the latest version of Dynamic LINQ RestrictOrderByToPropertyOrField is set yo true by default and np() function will not work - that is why we are setting it to false internally. You might need to set the same properties in your app as we do.
Hi,
Ok, i made an update of Radzen.Blazor and System.Linq.Dynamic.Core in my project and i works perfectly now.
Thanks for your support.