Как установить столбец в качестве корневого узла в TreePanel Ext Js 3.4 - PullRequest
0 голосов
/ 20 февраля 2020

Я хотел бы знать, есть ли способ установить, какой столбец является моим корневым узлом для TreePanel в Ext Js 3.4, например:

[{ "foo": [ {
        "bar": {} // this is my column where I want be the rootnode not the "children" column
                  // the only way I find it works is setting the column name to be "children"
}]
...