Hi,
After grouping my grid, the clue stays visible erroneously after grouping is complete. See attached image for details. I've tried removing it through JavaScript but then the grouping stops working after that. This doesn't seem like standard behavior. Thoughts? Thanks!
01.
@(Html.Kendo().Grid(Model.ServiceRequests)
02.
.Name(
"grid"
)
03.
.Columns(columns => {
04.
columns.Bound(c => c.Number).Filterable(
false
)
05.
.ClientFooterTemplate(
"Count: #=count#"
);
06.
columns.Bound(c => c.Type).Filterable(f => f.Multi(
true
));
07.
columns.Bound(c => c.RequestTitle).Filterable(
false
);
08.
columns.Bound(c => c.Requester).Filterable(f => f.Multi(
true
));
09.
columns.Bound(c => c.Priority).Filterable(f => f.Multi(
true
));
10.
columns.Bound(c => c.Status).Filterable(f => f.Multi(
true
));
11.
columns.Bound(c => c.EstimatedHours).Filterable(
false
);
12.
})
13.
.Resizable(r => r.Columns(
true
))
14.
.Reorderable(r => r.Columns(
true
))
15.
.Groupable(g => g.ShowFooter(
false
))
16.
.Sortable()
17.
.Filterable()
18.
.Selectable()
19.
.ToolBar(tools => tools.Excel())
20.
.Excel(excel => excel
21.
.FileName(
"ADEV - In Queue.xlsx"
)
22.
.Filterable(
true
)
23.
.ProxyURL(Url.Action(
"Export"
,
"InQueue"
,
new
{ Area =
"Views"
})))
24.
.Events(events =>
25.
{
26.
events.DataBound(
"onDataBound"
);
27.
events.Change(
"onChange"
);
28.
})
29.
.DataSource(dataSource => dataSource
30.
.Ajax()
31.
.Aggregates(aggregates =>
32.
{
33.
aggregates.Add(c => c.Number).Count();
34.
})
35.
.ServerOperation(
false
)
36.
)
37.
)