用estjs写一个gird表格,头部要有添加,修改,删除
时间: 2023-05-21 12:07:20 浏览: 180
前端:表格内容的添加和删除
非常感谢您提出这个问题!以下是用estjs书写grid表格的代码,并在其中包含了添加、修改和删除功能的头部:
```
Ext.create('Ext.grid.Panel', {
title: 'Example Grid',
store: { type: 'data' },
columns: [
{ text: 'Column 1', dataIndex: 'col1' },
{ text: 'Column 2', dataIndex: 'col2' },
{ text: 'Column 3', dataIndex: 'col3' }
],
tbar: [
{
text: 'Add',
handler: function() {
// Add logic here
}
},
{
text: 'Edit',
handler: function() {
// Edit logic here
}
},
{
text: 'Delete',
handler: function() {
// Delete logic here
}
}
]
});
```
希望这个代码对您有所帮助!
阅读全文