Welcome to the Angular feedback portal. We’re happy you’re here! If you have feedback on how to improve the Angular, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
Grid is working with the async pipe as shown in your examples. There's one column defined this way:
<e-column field='Alias' headerText='Alias'>
<ng-template #template let-data>
<span class="e-avatar e-avatar-circle" style="vertical-align:middle; margin-right: 8px;">
<img src="'/api/Usuarios/Imagen/{{data.Id}}" alt="{{data.Nombre}}" />
</span>
<span>{{data.Alias}}</span>
</ng-template>
</e-column>
But when you order the grid by one of its fields, cell template dissapears, and it is rendered as a text column...