0

我在为我的网格配置 RowExpander 时遇到问题。当网格渲染时,扩展器已经为每一行打开并且里面没有任何东西。当我单击它的图标时,会生成以下错误:nextBd 为空​​。我在这里发现了非常相似的问题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);


        },

4

1 回答 1

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(),您可以将它们声明为配置,或者在构造函数中。有关更多信息,请参阅此线程

于 2012-07-29T19:29:24.743 回答