如何在Sencha Architect中建树?我在网上找到的所有内容都与编辑在我的情况下是只读的代码有关。我能做些什么呢?
请帮忙!我真的很感激,因为我一直很难弄清楚。
先感谢您
如何在Sencha Architect中建树?我在网上找到的所有内容都与编辑在我的情况下是只读的代码有关。我能做些什么呢?
请帮忙!我真的很感激,因为我一直很难弄清楚。
先感谢您
TreeStore
使用下面指定的配置添加一个*TreePanel
{store: 'TreeStore', rootVisible: false}*
fields: [{
name: 'text'
}],
//please note that you need to wrap the root config inside an object {}
root: {
expanded: true,
children: [
{ text: "detention", leaf: true },
{ text: "homework", expanded: true, children: [
{ text: "book report", leaf: true },
{ text: "algebra", leaf: true}
] },
{ text: "buy lottery tickets", leaf: true }
]
}
Edit1:
按此绿色图标以编辑根配置。