IGX GRID: ng-template for igx-column giving error #14022
-
This is my code for igx-grid <igx-grid #grid1 [data]="data " [autoGenerate]="false"> <ng-template #columnTemplate let-column="column"> My package.json has { |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @KaushikEDS, Please, note that version 13.x. of Ignite UI for Angular is long out of support. The currently supported versions are 17.1.x and 16.1.x. More about our versioning can be found in this Wiki page. Additionally, in the excerpt of the package.json you provided, I am not seeing the Now to address your specific issue, regardless of the package version, the error is occurring as the To resolve this, the columns need to be iterated directly within the grid:
Please, test this approach and let me know if you need any further assistance on the matter. |
Beta Was this translation helpful? Give feedback.
Hi @KaushikEDS,
Please, note that version 13.x. of Ignite UI for Angular is long out of support. The currently supported versions are 17.1.x and 16.1.x. More about our versioning can be found in this Wiki page.
Additionally, in the excerpt of the package.json you provided, I am not seeing the
igniteui-angular
package, which is the one containing theigx-grid
. Please, make sure this package is installed.Now to address your specific issue, regardless of the package version, the error is occurring as the
igx-column
s are attempted to be rendered in a custom template. However, theIgxColumnComponent
expects to be defined in anIgxGridComponent
, which causes the error.To resolve this, the col…