BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
BtnClick() {
this.grid.deleteRecord();
} |
<button class='e-btn' (click)="BtnClick()">Delete</button>
|
[app.component.html]
<ejs-grid #grid id="grid" [dataSource] = 'data'(toolbarClick) = "toolbarClick($event)" [editSettings] = 'editSettings'[toolbar] = "toolbar" height = '300px' >
<e-columns>
. . . .
</e-columns >
</ejs-grid>
[app.component.ts]
toolbarClick(args) {
if (args.item.id == "grid_delete") {
// Write Your code here
}
} |