BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
app.component.ts <ej-grid [allowPaging]="true" [allowSorting]="true" [dataSource]="gridData" [columns]="columns"> <e-columns> .. <e-column headerText="Roles" width="80" [template]="template"></e-column> .. </ej-grid> `, directives: [EJ_DIALOG_COMPONENTS, EJ_GRID_COMPONENTS, CORE_DIRECTIVES] }) export class AppComponent { .. public template= "#columnTemp"; constructor() { } } Index.html <script type="text/x-jsrender" id="columnTemp"> <img style="width: 75px; height: 70px" src="Employees/{{:EmployeeID}}.png" alt="{{: EmployeeID }}" /> </script> |