1
在EXT JS網格中,對於具有xtype:actioncolumn的列,列標題未顯示在show/hide列表中。它的默認行爲列爲'Actions'。 我們可以重寫列列表中的實際列標題以顯示/隱藏操作列列嗎?該圖顯示了來自sencha示例的示例的屏幕顯示。actioncolumn xtype列標題顯示列隱藏/顯示列表中的操作
在EXT JS網格中,對於具有xtype:actioncolumn的列,列標題未顯示在show/hide列表中。它的默認行爲列爲'Actions'。 我們可以重寫列列表中的實際列標題以顯示/隱藏操作列列嗎?該圖顯示了來自sencha示例的示例的屏幕顯示。actioncolumn xtype列標題顯示列隱藏/顯示列表中的操作
如果你想更改列的標籤,你需要使用一個名爲menuText
爲配置actioncolumn
例子:(https://fiddle.sencha.com/#fiddle/1944)
{
xtype:'actioncolumn',
width:50,
menuText: 'My Actions',
items: [{
icon: 'extjs-build/examples/shared/icons/fam/cog_edit.png', // Use a URL in the icon config
tooltip: 'Edit',
handler: function(grid, rowIndex, colIndex) {
var rec = grid.getStore().getAt(rowIndex);
alert("Edit " + rec.get('firstname'));
}
},{
icon: 'extjs-build/examples/restful/images/delete.png',
tooltip: 'Delete',
handler: function(grid, rowIndex, colIndex) {
var rec = grid.getStore().getAt(rowIndex);
alert("Terminate " + rec.get('firstname'));
}
}]
}