Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

1K
Vistas
Error angular: Error: no se pudo encontrar la columna con id cuando está en TS

En mi aplicación, tengo una tabla con varias columnas. Estoy tratando de llenarlo con los datos respetados, pero cuando se abre la página aparece el error Could not find column with id "PublishedParty" todavía, está en el archivo TS. Aquí está mi código, ¿qué tiene de malo?

HTML:

 <ng-container *ngIf="isPublishedParty == true" matColumnDef="PublishedParty"> <th mat-header-cell *matHeaderCellDef mat-sort-header style="min-width: 100px !important;" [ngStyle]="{'color': 'black'}" style="text-align: center;"> <b> Planlanan Miktar </b> </th> <td mat-cell *matCellDef="let row; let i = index" style="min-width: 100px !important;" style="text-align: center;"> <div> Miktar: {{row.PublishedPartyQuantity | number}} </div> <div> Parti: {{row.PublishedPartyCount | number}} </div> </td> </ng-container>

TS:

 isPublishedParty = false; private _materialPlan: IMaterialPlan = {}; @Input() set MaterialPlan(prm: IMaterialPlan){ this._materialPlan = prm; } get MaterialPlan(): IMaterialPlan { return this._materialPlan; } displayedColumns: string[] = [ 'StockIntegrationCode', 'ReceiptName', 'PublishedParty', ]; dataSource: MatTableDataSource<IMaterialPlanReceiptResult>; @ViewChild(MatPaginator, { static: true }) paginator: MatPaginator; @ViewChild(MatSort, { static: true }) sort: MatSort; constructor( ) { if(this._materialPlan.IncludePlannedParty == true){ this.isPublishedParty == true; } }
about 4 years ago · Juan Pablo Isaza
2 Respuestas
Responde la pregunta

0

Para que angular represente la tabla correctamente, isPublishedParty debe inicializarse como verdadero. De lo contrario, *ngIf lo elimina de la plantilla y obtendrá ese error. Puede establecer isPublishedParty en falso en un momento posterior, tal vez en el ciclo ngAfterViewInit() .

about 4 years ago · Juan Pablo Isaza Denunciar

0

Creo que el problema es que oculta el contenedor ng cuando la condición en su constructor es falsa para "this._materialPlan.IncludePlannedParty".

Entonces, la solución podría ser eliminar el nombre de la columna de la matriz displayColumns:

 private _materialPlan: IMaterialPlan = {}; @Input() set MaterialPlan(prm: IMaterialPlan){ this._materialPlan = prm; } get MaterialPlan(): IMaterialPlan { return this._materialPlan; } displayedColumns: string[] = []; dataSource: MatTableDataSource<IMaterialPlanReceiptResult>; @ViewChild(MatPaginator, { static: true }) paginator: MatPaginator; @ViewChild(MatSort, { static: true }) sort: MatSort; constructor( ) { this.displayedColumns = [ 'StockIntegrationCode', 'ReceiptName', ]; if(this._materialPlan.IncludePlannedParty == true){ this.isPublishedParty == true; this.displayedColumns.push('PublishedParty'); } }
about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda