gpt4 book ai didi

javascript - Sencha : Cannot call method 'getHeader' of undefined

转载 作者:行者123 更新时间:2023-12-02 17:59:22 24 4
gpt4 key购买 nike

我尝试使用从其关联的 form.Panel 修改的数据来更新 dataview.List 的记录

代码:

onListItemTap:function(list,index,target,record,e){
this.getMain().push({
xtype:'userform',
title:record.data.name,
record:record,
listeners:{
hide:function(form){
record.setData(form.getValues());
list.refresh();
}
}
});
},

record.setData(...);list.refresh();
之后的代码页面获取错误:
未捕获类型错误:无法调用未定义的“getHeader”方法

最佳答案

我正在使用的 sencha touch 2.3.1 似乎有问题。我只是注释 List 组件中的 grouped=true 属性。它有效。

代码:

       {
xtype:'list',
id:'list-user',
store:'Users',
itemTpl: new Ext.XTemplate(...),
flex:1,
//grouped:true
}

希望这一发现能够为您节省时间并避免沮丧。

关于javascript - Sencha : Cannot call method 'getHeader' of undefined,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20690540/

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