Index.html
<head>
<meta charset="utf-8" />
<title>Window</title>
<link rel='nofollow' href="//cdn.syncfusion.com/ej2/material.css" rel="stylesheet" />
<link
rel='nofollow' href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
rel="stylesheet"
/>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/x-icon" rel='nofollow' href="favicon.ico" />
</head>
……………………………………….
App.component.html
<e-column field="CustomerName" headerText="Customer Name" width="150">
<ng-template #template let-data>
<div>
<div class="empimg">
<span class="fa fa-male"> </span>
</div>
<span id="Emptext">{{data.CustomerName}}</span>
</div>
</ng-template>
</e-column> |