我已经开始了一个带有sencha touch的项目(我对JS的第一次真实体验),我担心我的咬伤超过了我的咀嚼......
我创建了大部分应用,但是我在尝试将嵌套列表放在选项卡面板中时遇到了问题。我收到这个错误:
未捕获的TypeError:无法调用未定义的方法'getRootNode'。
以下是我试图插入它的方法:
{
title: 'Settings',
iconCls: 'settings',
layout: 'card',
items: [nestedPanel]
}
有人能指出我正确的方向吗?
答案 0 :(得分:0)
您的代码应该是:
App.views.MyNestedList = Ext.extend(Ext.NestedList, {
iconCls : '',
iconMask : true,
title : '',
store : '',
itemTpl : '',
});
Ext.reg('MyNestedList', App.views.MyNestedList);
App.views.myTabs = Ext.extend(Ext.TabPanel,{
items : [
{xtype : 'MyNestedList'}
]
});