extjs表格标题行添加按钮
时间: 2023-03-28 09:00:39 浏览: 135
您可以通过以下代码实现在 ExtJS 表格标题行添加按钮:
```
{
xtype: 'gridcolumn',
text: '操作',
width: 100,
renderer: function (value, metaData, record, rowIndex, colIndex, store, view) {
return '<button>按钮</button>';
}
}
```
这样就可以在表格的标题行中添加一个按钮了。
阅读全文