See the fiddle here: http://jsfiddle.net/rydama/KaTg2/9
The problem is with the 'e' field in the data object. When kendo is rendering the row template, it is using this object and the 'e' field conflicts with the js code it created for the template which starts out like this:
I can workaround this by mangling my field name, but should I need to? Is this something that should be fixed in kendoui?
Thanks
The problem is with the 'e' field in the data object. When kendo is rendering the row template, it is using this object and the 'e' field conflicts with the js code it created for the template which starts out like this:
function
anonymous(data
/**/
) {
var
o, e = kendo.htmlEncode;
with
(data) {
o =
'<tr data-uid="'
+ (data.uid)
...
...
I can workaround this by mangling my field name, but should I need to? Is this something that should be fixed in kendoui?
Thanks