Hi,
I need to add a hyperlink for first column value if we have dynamic field names. please check below sample code
<ejs-grid #grid id='Grid' [dataSource]='rowData'>
<e-columns>
<ng-template #template ngFor let-column [ngForOf]="def">
<e-column [field]="column.fieldName" [headerText]="column.headerName" [validationRules]="{ required: true}">
</e-column>
</ng-template>
</e-columns>
</ejs-grid>
I have above code,How can I add hyperlink for 1st column in it
Regards,
Bhavya