BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
<ejs-grid ref='grid' :data-source="gridSource" :allow-paging="true"
>
<e-columns>
<e-column type='checkbox' width='50'>e-column>
<e-column field='firstname' header-text='Filename' width=90 :template="userTemplate">e-column>
<e-column field='account_created' header-text='Created at' width=90>e-column>
<e-column headerText='Manage Records' width='160' :commands='commands'>e-column>
e-columns>
ejs-grid>
data() {
return {
gridSource: new DataManager({
url: '/user',
adaptor: new WebApiAdaptor({
}),
key: 'hash'
}),
commands: [
{ type: 'Delete', buttonOption: { iconCss: 'e-icons e-delete', cssClass: 'e-flat' } },
],
}}
Thanks in advance