JSON - 无法读取未定义的属性长度

时间:2015-03-01 21:27:38

标签: jquery json kendo-datasource kendo-panelbar

我尝试使用kendo数据源创建一个kendo面板栏。我找不到未定义的属性长度'在此行var panelBar = $("#foodGroups").kendoPanelBar({dataSource: ds }).data("kendoPanelBar");上的jquery.min.js文件中。我认为这是因为我的数据源。以下是kendo数据源格式example的示例。我的数据源数据格式不正确吗?代码:

function populateFoodGroups() {

var ds = new kendo.data.DataSource({});

      var pData = [];    
if (_theFoodGroups.length > 0) {
        var groups = [];
        for(var y = 0; y < _selectedMealType.allMealFoodGroup.Code.length; y ++) {
            pData.push({text:_selectedMealType.allMealFoodGroup.Code[y].description,
                        contentUrl: 'file:///data/data/VCare.International.Observations/files/12590FAA-5EDD-4B12-856D-F52A0A1599F2/Views/Phone/checkboxes.html'});



            if($.inArray(_selectedMealType.allMealFoodGroup.Code[y].myMealFoodGroup.description, groups) === -1){

                groups.push({text: _selectedMealType.allMealFoodGroup.Code[y].myMealFoodGroup.description, content: pData[y]});
            }
        }



        for(var z = 0; z < groups.length; z ++) {
            //panelBar.append({text: groups[z].text, items: pData[z]});
            ds.add({text: groups[z].text, items: groups[z].content});
        }

   var panelBar = $("#foodGroups").kendoPanelBar({dataSource: ds }).data("kendoPanelBar");

}
}

2 个答案:

答案 0 :(得分:0)

&#34;目前,PanelBar和Menu不支持数据绑定到Kendo DataSource,而且他们的dataSource选项用于加载JSON初始化对象。&#34; - posted on telerik forums in this answer

答案 1 :(得分:0)

请查看为下面提出的问题提供的解决方案

Loading of Kendo UI panelbar using datasource