extjs中actioncolumn怎么加在column里面
时间: 2023-03-28 17:01:55 浏览: 118
EXTJS4 Actioncolumn不能使用文字的部分解决办法
5星 · 资源好评率100%
您可以使用以下代码将 actioncolumn 添加到 column 中:
```
{
xtype: 'actioncolumn',
width: 50,
items: [{
iconCls: 'x-fa fa-pencil',
tooltip: 'Edit',
handler: function(grid, rowIndex, colIndex) {
// 编辑操作
}
}, {
iconCls: 'x-fa fa-trash',
tooltip: 'Delete',
handler: function(grid, rowIndex, colIndex) {
// 删除操作
}
}]
}
```
其中,xtype 为 'actioncolumn',items 为一个数组,包含每个操作的配置项。在 handler 中,您可以编写对应的操作逻辑。
阅读全文