Hi,
I just updated to Angular Version 10 and using the latest release of "@syncfusion/ej2-angular-grids": "18.2.55" and getting errors using any form of the ng-template for an individual column.
This simple column definition causes an issue:
<e-column headerText="Code" width="50">
<ng-template #template let-data>
<div>
{{ data?.code }}
</div>
</ng-template>
</e-column>
I created a blank project and used you stackblitz example using column templates and this seems to work fine, however my usage doesn't. The compiler is different for the column TemplateString as opposed to TemplateEle
Your assistance would be greatly appreciated.
From what I have gathered its something to do with the compiler that is used.
The catch block is called:
Which uses this Engine to compile the template, but its not a string its a TemplateRef.
Then fails on the highlight line.
However the working demo app I produced it doesn't follow the same path it going into :
Let me know if I could provide any further clarification.