BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
[app.component.html]
<ejs-grid #batchgrid id='Batchgrid' [locale]='en-US' [dataSource]='data' allowPaging='true' [pageSettings]='pageSettings' [editSettings]='editSettings' [toolbar]='toolbar'>
<e-columns>
------------------------
</e-columns>
</ejs-grid>
------------------------------------------------------------------------------------------------------------
[app.component.ts]
setCulture('en-US');
L10n.load({
'en-US': {
grid: {
ConfirmDelete:"Are you ok to delete the record ?"
}
}
});
|
This is exactly what I was looking for. Thank you.