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!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

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...