I have no problem displaying the contents of the objects in a tabstrip with the earlier builds (kendoui.web-dataviz.2011.3.1129.open-source.zip), but now (kendoui.web.2012.1.322.open-source.zip) it shows the source instead of the content, even added hasOwnProperty checks. Do you know why?
<li><label>roles:</label>
# for (var p in roles) { #
# if (roles.hasOwnProperty(p)) #
#= roles[p] #
# } #
found the fix....add this to your script...
kendo.data.ObservableArray.fn.toJSON = function() {
return [].slice.call(this);
}
<li><label>roles:</label>
# for (var p in roles) { #
# if (roles.hasOwnProperty(p)) #
#= roles[p] #
# } #
found the fix....add this to your script...
kendo.data.ObservableArray.fn.toJSON = function() {
return [].slice.call(this);
}