I'm pretty new to the Telerik controls, I'm looking for the best way to bind the following custom object to a RadGrid:
public class LevenshteinMatch { public string SourceA { get; set; } public string SourceB { get; set; } public List<LevenshteinScore> editScore { get; set; } } public class LevenshteinScore { public string PartA { get; set; } public string PartB { get; set; } public int Score { get; set; } }Thanks.