BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
Html:
<ejs-richtexteditor (actionBegin)='onActionBegin($event)'>
</ejs-richtexteditor>
TS:
onActionBegin(e: ActionBeginEventArgs) {
if (e.item.command === 'Images' && e.requestType === 'Remove') {
// Make service request to call a remove action
}
}
|