This question is locked. New answers and comments are not allowed.
I have a column in my grid that is bound to an object:
Im attempting to group on State Abbreviation:
Any ideas?
columns.Bound(o => o.State).HtmlAttributes(new { style = "text-align:center;" });Im attempting to group on State Abbreviation:
groups.Add(o => o.State.StateShort).ToString(); On the initial page load the grouping displays correctly and displays records by each state (MO, TX, AL, etc) The problem occurs when I remove the grouping filter and then drag the state field back up to the grouping bar. Once I do this and the page reloads the grouping field displays like: State: System.Data.Entity.DynamicProxies.State_B8F94AA2F3F3F0F878BC3EA5504E749571D766CA8C30DFE41C4BF3CB31EC41C0
Any ideas?