BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
//Template
<ej-grid . . . (actionBegin)="onActionBegin($event)">
<e-columns>
<e-column field="OrderID" headerText="Order ID" width="75"textalign="right"></e-column>
. .
</e-columns>
</ej-grid>
Component
export class DefaultComponent {
. . . .
onActionBegin(e: any){
if (e.requestType == "batchsave") {
e.cancel = true; //Prevent the default save action
//do something
} }
}
|