Hi,
How to insert a dynamic template in the column?
<ej-grid id="Grid"
datasource="ViewBag.DataSource"
>
<e-columns>
<e-column field="State" header-text="State" width="70" Template="MyTemplate">
<e-template><p>State</p></e-template>
</e-column>
<e-column field="NameInstance" header-text="Instance" width="80"></e-column>
<e-column field="NameFile" header-text="Name of file" width="80"></e-column>
</e-columns>
</ej-grid>
Thanks