This question is locked. New answers and comments are not allowed.
If I have such a model:
And a grid:
And I will group by Sprint Title, the result is as shown in the attachment - undesireable.
| public class WorkitemGridRow : Workitem |
| { |
| [UIHint("SprintSelection")] |
| public Sprint SprintModel { get; set; } |
And a grid:
| if (Model.viewSprints) c.Bound(s => s.SprintModel) |
| .ClientTemplate("<# if (SprintModel) { #><#= SprintModel.Title#> <#} else { #> none <# } #>") |
| .ReadOnly(false).Width(250).Title("Sprint"); |
And I will group by Sprint Title, the result is as shown in the attachment - undesireable.