gpt4 book ai didi

tree - 如何在Sencha Touch中更新嵌套列表/树存储?

转载 作者:行者123 更新时间:2023-12-02 04:07:42 26 4
gpt4 key购买 nike

我有一个嵌套列表,必须根据用户在Ext.Carousel中选择的内容填充新数据。

TreeStore.load(newData) // this does not work :(
TreeStore.removeAll() // this works!

看来文档和论坛都没有答案,因为我已经搜索了2-3天。先感谢您。

最佳答案

我最终得到以下解决方案:

NestedList = Ext.extend(Ext.NestedList, {
loadData: function(data) {
this.store.setProxy({
type:'memory',
data: data,
reader: {
type: 'tree',
root: 'items'
}
});
this.store.load();
{ // some back taps to make it show the top level
this.onBackTap();
this.onBackTap();
this.onBackTap(); };
},

关于tree - 如何在Sencha Touch中更新嵌套列表/树存储?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6737806/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com