我使用extjs 4.2并且我想隐藏一个gride
但是凭我的代码我可以隐藏一个Colonne和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,
}
]
}]
});
答案 0 :(得分:0)
这可能是您正在使用的布局的问题。请更改该布局类型。我觉得你很合适。尝试将布局类型更改为自动。