Hi,
Can the DropDownList TextField property access fields on nested objects?
For example:
01.<TelerikDropDownList02. TItem="PersonModel"03. TValue="int"04. Data="@Data"05. ValueField="@nameof(PersonModel.PersonId)"06. TextField="@nameof(PersonModel.Person.DisplayName)">07.</TelerikDropDownList>08.@code {09. private IEnumerable<PersonModel> Data { get; set; }10. 11. protected override Task OnInitializedAsync()12. {13. Data = new PersonModel[]14. {15. new() { PersonId = 1, Person = new Person { FirstName = "A", LastName = "B"}},16. new() { PersonId = 2, Person = new Person { FirstName = "C", LastName = "D"}},17. new() { PersonId = 3, Person = new Person { FirstName = "E", LastName = "F"}}18. };19. 20. return base.OnInitializedAsync();21. }22. 23. private class PersonModel24. {25. public int PersonId { get; init; }26. 27. public Person Person { get; init; }28. }29. 30. private class Person31. {32. public string FirstName { get; init; }33. 34. public string LastName { get; init; }35. 36. public string DisplayName => $"{FirstName} {LastName}";37. }38.}