Hi,
I'm currently working on a Syncfusion grid control on AngularJs project using typescript. I want to set a custom row template to the grid which I'm using in side my angular controller script file or in the markup. I saw in the documentation there is property called rowtemplate which I can use. I put updated the markup as follows but it didint work.
Html
<div id="Grid" ej-grid e-datasource="vm.reports" e-rowTemplate="#templateData">
....
<script id="templateData" type="text/x-jsrender">
<tr>
<td class="photo">
<img style="width: 130px; height: 160px" src="/13.2.0.29/themes/web/images/employees/" />
</
.....
Could you please help me to properly configure the row template property.
Thanks