使用以下 Json,我填充了一个树形面板:
[{"text":"Item 1}", "expanded":true, "cls":"folder", "children":
[{"text":"Item 1.1", "leaf":true, "foo", "bar"},
...
...
当用户在树中选择项目 1.1 时,我能够找到所选项目:
onTreepanelSelectionChange: function(tablepanel, selections, options) {
var selItem = selections[0].data.text;
所以我可以访问诸如text、expand等属性……但我找不到访问foo值的方法。我认为我的问题是由于我通过树形面板找到所选项目并且foo的值仅在商店中可用。