我想知道是否可以在嵌套列表的第一级显示子叶?
在旁边的示例中,我想在选择“我的类别”(最后一项)时显示一个页面,但如果我使用getDetailCard函数,则会出现父问题。消息是:
“'undefined'不是对象(评估'parent.attributes.record.data')”
DATA
var data = {
text: 'Groceries',
items: [{
text: 'WATER',
items: [{
text: 'Water',
items: [{
text: 'Sparkling',
info : 'THIS TEXT IS SHOWN IN THE CHILD LEAF',
leaf: true
},{
text: 'Still',
leaf: true
}]
},{
text: 'Coffee',
leaf: true
},{
text: 'Espresso',
leaf: true
},{
text: 'Redbull',
leaf: true
},{
text: 'Coke',
leaf: true
},{
text: 'Diet Coke',
leaf: true
}]
}],{
text: 'Fruit',
items: [{
text: 'Bananas',
leaf: true
},{
text: 'Lemon',
leaf: true
}]
},{
text: 'Snacks',
items: [{
text: 'Nuts',
leaf: true
},{
text: 'Pretzels',
leaf: true
},{
text: 'Wasabi Peas',
leaf: true
}]
},{
text: 'My Category',
info : 'TEXT I WANT TO SHOW ON A CHILD LEAF',
leaf: true
}]
};
MODEL&商店:
Ext.regModel('ListItem', {
fields: [
{name: 'text', type: 'string'},
{name: 'info', type: 'string'}
]
});
var store = new Ext.data.TreeStore({
model: 'ListItem',
root: data,
proxy: {
type: 'ajax',
reader: {
type: 'tree',
root: 'items'
}
}
});
感谢您的帮助,问候。
答案 0 :(得分:0)
叶子'我希望在儿童叶上显示的文字'没有父母(实际上它的'父母'是树的根元素)。