私はこのようなグリッドを持っています:
Ext.define('Exp.view.dashboard.Tv', {
extend: 'Ext.grid.Panel',
initComponent: function() {
this.columns = [
{header: 'Name', dataIndex: 'name', flex: 1},
{
header: 'Actions',
xtype: 'actioncolumn',
items: [
{
icon : '/images/icons/star_off.png'
}
]
}
];
this.callParent(arguments);
}
});
名前とアクションを非表示にします。たぶんそれを行うための文書化されていない設定オプションがありますか?