gpt4 book ai didi

extjs4.2 - actioncolumn xtype 列标题在列隐藏/显示列表中显示操作

转载 作者:行者123 更新时间:2023-12-05 03:11:34 26 4
gpt4 key购买 nike

在 EXT JS 网格中,对于具有 xtype: actioncolumn 的列,列标题未显示在显示/隐藏列列表中。对于 actioncolumn 列,它默认显示为“Actions”。我们可以覆盖列列表中的实际列标题以显示/隐藏 actioncolumn 列吗?图片显示了 sencha 示例的屏幕显示。

enter image description here

最佳答案

如果你想改变列中的标签,你需要为 actioncolumn 使用一个名为 menuText 的配置

示例:( 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'));
}
}]
}

关于extjs4.2 - actioncolumn xtype 列标题在列隐藏/显示列表中显示操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36779566/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com