Kendo grid - adding column from nested dictionary
问题 [Serializable] public class ContactDto { public int Id { get; set; } public string FirstName { get; set; } public string LastName { get; set; } public string CompanyName { get; set; } public Dictionary<string, string> CustomFields { get; set; } } I have the contactdto class above with a dictionary of customfields. Those can be anything 'MotherName' 'Birthdate' etc. How do i display the custom fields as columns in the kendo grid? All the contactDTO's will have the same dictionary keys. I am