Welcome to the Blazor feedback portal. We’re happy you’re here! If you have feedback on how to improve the Blazor, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
I have implement a Dynamic Generic type property collection with a DynamicObject Interface (Implementation) TryGetMember(), TrySetMember(), GetDynamicMemberNames(). If a nullable value type like int?, double? etc. has a value like null the TryGetMember() will cast the nullable value to object result of null. The type now were lost and the inplace Edit of the DataGrid will not be shown. But I have set the type of the edit control of the grid to NumericEdit? How can I edit nullable values with using the DynamicObject interface? I can't use a data class with members because I get dynamic values (e.g some nullable types) from the database and I convert it to a dictionary of dynamic property types. Is it possible the set the type of an inplace edit control (NumericEdit) to a specific type like int?, double?, float? because now the type identification of reflection will not be work for this problem.