extjs添加操作列的代码
时间: 2023-03-27 12:02:22 浏览: 194
以下是添加操作列的代码示例:
```
{
xtype: 'actioncolumn',
text: '操作',
width: 100,
items: [{
iconCls: 'x-fa fa-pencil',
tooltip: '编辑',
handler: function(grid, rowIndex, colIndex) {
// 编辑操作
}
}, {
iconCls: 'x-fa fa-trash',
tooltip: '删除',
handler: function(grid, rowIndex, colIndex) {
// 删除操作
}
}]
}
```
希望能对您有所帮助。
阅读全文