- 浏览: 2239 次
- 性别:
- 来自: 杭州
最新评论
文章列表
先定义一个简单的Model:
Ext.define("ProductModel", {
extend: "Ext.data.Model",
fields: [
{
name: "product",
// mapping: "p.name" // 这种写法也可以,使用下面的function是为了调试
mapping: function(data) {
// aler ...
今天在自定义类时出现这样一个错误,经过反复尝试和仔细阅读api后发现,我的自定义类继承了Ext.panel.Panel,并实现了initComponent方法,问题在于我的initComponent方法中没有调用callParent()。
API文档中关于initComponent()有这样一段话:“The initComponent method must contain a call to callParent in order to ensure that the parent class' initComponent method is also called.”
在initCom ...