2

如何在Sencha Architect中建树?我在网上找到的所有内容都与编辑在我的情况下是只读的代码有关。我能做些什么呢?

请帮忙!我真的很感激,因为我一直很难弄清楚。

先感谢您

4

1 回答 1

2
  1. TreeStore使用下面指定的配置添加一个*
  2. 添加一个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:
按此绿色图标以编辑根配置。
编辑模式

于 2013-01-03T14:27:17.597 回答