Bug : this.config[col] is undefined

原因:

Turns out my problem was in the definition of Ext.grid.ColumnModel. My autoexpand column which I selected in the definition of the grid was "name":

autoExpandColumn:"name",

this means that I needed a corresponding definition in the ColumnModel with an "ID". I thought the ID was referring to the XML record, but it's referring to an ID in the column Model:

{id: 'name', header: "Project Name", width:200, sortable:true, dataIndex:"name"}

if you don't have the ID it will fail to compare, return -1 for the call at ext-all-debug.js:31525


解决办法:
给autoExpandColumn对应的属性在ColumnModel中的定义加个id属性,如下:
{[b][color=red]id:'name'[/color][/b],header: "name",width: 75, sortable: true, dataIndex: 'name'},
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值