Declined
Last Updated: 22 Nov 2013 18:07 by ADMIN
Stephen
Created on: 29 Oct 2013 17:32
Category: Kendo UI for jQuery
Type: Feature Request
1
fix groupHeaderTemplate bug (blows up when cell value is 'undefined')
line 26486 
has this:
data = extend({}, { field: group.field, value: group.value }, group.aggregates[group.field]),
should be this:
data = extend({}, { field: group.field, value: (typeof(group.value) === 'undefined' ? null : group.value) }, group.aggregates[group.field]),
Or something like that.  In any case, without that change, the following will blow up when cell value is undefined.
groupHeaderTemplate: "#=value#"
2 comments
ADMIN
Telerik Admin
Posted on: 22 Nov 2013 18:07
Please file a support report on kendoui.com (via the support system or forums) to draw attention to this issue.
Stephen
Posted on: 29 Oct 2013 17:32
Sorry - line 26486 in kendo.web.js ...