我的网格(ExtJs 6)从'Ext.grid.Panel'
延伸
我在这个网格中有一个动作列,定义如下 -
{
xtype: 'actioncolumn',
menuDisabled: true,
text: 'ActionCol Header',
sortable: false,
items: [
{ iconCls: 'somecls', xtype: 'button', handler: 'somehandler' }
]
}
除了列的文本外,一切正常 列标题按预期显示,即' ActionCol标题'但此列的文字显示为' 操作'列列表中用于隐藏/显示列(单击列菜单)
我在这里做错了什么?我试图添加header: undefined
,但它无效