I have a class
public class LookupClass { public int Id { get; set; } public string Name { get; set; } } That I have referenced in another class
public class Sampleclass { public int Id { get; set; } public LookupClass LookupEntry { get; set; } } which is is displayed in a KendoUI Grid
@(Html.Kendo().Grid<SampleClass>() .Name("SomeGrid") .Columns(cols => { cols.Bound(o => o.LookupEntry).Title("Lookup Column") // Displays [object Object] cols.Bound(o => o.LookupEntry.Name) // displays name correctly } .DataSource(datasource => // leaving this out since the data is seems to be loading correctly. ) ) When displaying the grid it just displays [object Object] for the value in the cells in the "Lookup Column" column. I have gotten the editor template working (leaving out code since not necessary, basically copied from here) and saving/loading works (left out for simplicity), but I can't seem to figure out how to display the Name property from the Lookup class.
[object Object].