BoldDesk®Customer service software offering ticketing, live chat, and omnichannel support, starting at $49/mo. for 10 agents. Try it for free.
...
toolbarClick(args) {
if(args.item.id=="grid_CustomAdd"){
this.addRecord(); //for add operation
}
else if(args.item.id=="grid_CustomEdit"){
this.startEdit(); //for edit operation
}
else if(args.item.id=="grid_CustomDelete"){
this.deleteRecord(this.getSelectedRows()[0]); //for delete operation
}
else if(args.item.id=="grid_CustomUpdate"){
this.endEdit(); //for update operation
}
}
...
|
[index.js]
...
this.toolbarOptions = ['CustomAdd', 'CustomEdit', 'CustomDelete', 'CustomUpdate', 'Cancel'];
... |