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!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

When using a complex data type in DataGrid in edit mode, the property with this data type is always equal to NULL.

Example:

    public class Order

    {

        public int? OrderID { get; set; }

        public string CustomerID { get; set; }

        public DateTime? OrderDate { get; set; }

        public double? Freight { get; set; }

        public string ShipCountry { get; set; }

        public Compl MyCompl { get; set; }


        public class Compl

        {

            public string MyProperty2 { get; set; }

        }

    }


Order.MyCompl - always equal to NULL in edit mode.

2020-08-11_020827.png


I am attaching an example of the project.

Thank you.