Hi Fabio,
Thanks for contacting Syncfusion support.
We could not render the image without <img> tag as it is necessary while using an image in Html.
For your requirement, we can encode your image byte array in base 64 as follows,
<script type="text/x-jsrender" id="columnTemplate">
<img src='data:image/jpeg;base64,{{:Photo}}' />
</script>
@(Html.EJ().Grid<EmployeeView>("Grid")
. . . .
.Columns(col =>
{
col.HeaderText("Employee Image").Template(true).TemplateID("#columnTemplate").TextAlign(TextAlign.Center).Width(110).Add();
. . . .
. . . .
})
)
|
Please refer to the below link for more clarification,
http://sweetme.at/2013/10/18/six-four-base64-encode-and-embed-your-images-in-html-markdown-and-css-files/
Regards,
Gowthami V.