我使用 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,
}
]
}]
});