0

我使用 extjs 4.2,我想隐藏一个网格

但是使用我的代码,我可以隐藏一个冒号和 gride 的标题,但不能隐藏 gride 的空间

我尝试使用此代码:

     var myPanel= Ext.create('Ext.grid.Panel', {id:'test',store: testStore,         collapsible:true,hidden: true,title:listRequestUPRegist,
columns: [{xtype: 'checkcolumn', hidden: true,header: 'test',dataIndex: 'checked',  width:
     60,listeners:{'checkchange': RequestGridSelectionChanged}}             
],
columnLines: true,  
anchor: '100%',
 frame: true, 
height: 250, 
//margin: '5 5 5 5', 
        dockedItems: [{

            xtype: 'toolbar',
                            dock: 'bottom',
                            ui: 'footer',
                            layout: {
                            pack: 'center'
                            },
                            items: [
                                { 
                                    xtype: 'button',
                                    text: consultation,

                                } 
                                ]
                            }]
                });
4

1 回答 1

0

这可能是您正在使用的布局的问题。请更改该布局类型。我认为你适合布局。尝试将布局类型更改为自动。

于 2014-01-28T07:21:32.940 回答