我在为网格配置RowExpander时遇到问题。当网格渲染时,扩展器已经为每一行打开,内部没有任何内容。当我单击其图标时,会生成以下错误:nextBd为null。我在这里找到了非常类似的问题http://www.sencha.com/forum/showthread.php?185837-Grid-Panel-PlugIn-Rowexpander-nextBd-is-null但是解决方案对我不起作用,仍然不明白为什么插件配置不能在initComponent方法中传递:
这是我的网格代码:
Ext.define('GSIP.view.plans.PlanReqList' ,{
extend: 'Ext.grid.Panel',
alias : 'widget.gsip_devplan_list',
id: 'gsip_plan_list',
plugins: [{
ptype: 'rowexpander',
rowBodyTpl : [
'Nazwa:{name}'
]
}],
//title:i18n.getMsg('gsip.view.PlanReqList.title'),
layout: 'fit',
initComponent: function() {
this.store = 'DevPlan';
// this.plugins = [{
// ptype: 'rowexpander',
// rowBodyTpl : [
// {name}
// ]
// }];
this.features = [{ftype:'filters', encode:false, local:true},{ftype:'grouping'}];
this.tbar = [{
xtype:'commandbutton',
id: 'newReq',
iconCls:'icon-application_add',
text: i18n.getMsg('gsip.view.plans.PlanReqList.addReq'),
command: 'newReq',
}];
this.viewConfig = {
forceFit:true,
getRowClass: function(record, index) {
var c = record.get('elapsedPercent');
if (c >= 0) {
return 'elapsed-normal';
}
}
}
this.columns = [
{header: "Id", dataIndex: "id", width:50, sortable: true, filter:{type:'numeric'}},
{header: i18n.getMsg('gsip.view.plans.PlanReqList.column.name'), dataIndex: "name", flex:1, sortable: true, filter:{type:'string'} },
}
];
this.callParent(arguments);
},
答案 0 :(得分:3)
rowexpander
插件使用名为rowbody
的功能。
在initComponent()
中,您使用以下行重写this.features
(已包含rowbody
):
this.features = [{ftype:'filters', encode:false, local:true},{ftype:'grouping'}];
因此不包括rowbody
功能;因此.x-grid-rowbody-tr
类没有被注入;因此rowexpander
无法为nextBd
找到此类并返回null。
你应该尝试:
var iNewFeatures = [{ftype:'filters', encode:false, local:true},{ftype:'grouping'}];
this.features = iNewFeatures.concat( this.features );
最后,无法在InitComponent()
中启动插件,您可以将它们声明为配置,也可以在构造函数中声明。有关详细信息,请参阅this thread。