This question is locked. New answers and comments are not allowed.
I am thinking this must be a fairly common question, but I can't seem to find an answer similar to my situation.
I get an error when I try to do the binding of first+last. Is there a way to do this, or do I I have to do this in my model?
Thanks,
~S
Html.Telerik().Grid<Person>(Model.OrderBy(m=>m.LastName)) .Name("Person") .Footer(Model.Count() > 10) .Columns(c=> { c.Bound(m => m.LastName + "," + m.FirstName).Title("Name").Width(100); c.Bound(m => m.Age).Title("Age").Width(50); })I get an error when I try to do the binding of first+last. Is there a way to do this, or do I I have to do this in my model?
Thanks,
~S