This question is locked. New answers and comments are not allowed.
My Subscription datamodel class contains a SubscriberId with an association to a Person class containing a FullName property.
A grid defined like this works just fine - the FullName value is displayed in the grid correctly:
| Html.Telerik() |
| .Grid(Subscriptions) |
| .Name("MainGrid") |
| .Columns(columns => |
| { |
| columns.Bound(S => S.Person.FullName); |
| columns.Bound(S => S.SubjectClassType); |
| columns.Bound(S => S.SubjectName); |
| } |
| ) |
| .Filterable() |
| .Pageable(paging => |
| paging.PageSize(10) |
| .Style(GridPagerStyles.NextPreviousAndNumeric) |
| .Position(GridPagerPosition.Bottom) |
| ) |
| .Render(); |
| .Groupable(grouping => grouping.Groups(groups => |
| { |
| groups.Add(s => s.Person.FullName); |
| groups.Add(s => s.SubjectClassType); |
| groups.Add(s => s.SubjectName); |
| })) |
Frank