Generating templates programmatically in Kendo for Angular grid

[亡魂溺海] 提交于 2020-01-06 04:51:07

问题


Given this columns array in a parent component:

columns = [
      { field: 'field1', title: 'Title 1', width: '100px' },
      { field: 'field2', title: 'Title 2', width: '200px' },
      { field: 'field3', title: 'Title 3' }
  ];

I can build a Kendo for Angular grid dynamically in a my-table component:

@Component({
  selector: 'my-table',
  template: `
          <kendo-grid #grid="kendoGrid" [data]="data">
              <kendo-grid-column
                  *ngFor="let column of columns"
                     field="{{column.field}}"
                     title="{{column.title}}"
                     width="{{column.width}}"
              </kendo-grid-column>
          </kendo-grid>
`
})
export class MyTableComponent {
     @Input() data: any[] = [];
     @Input() columns: any[] = [];
}

What I need is to programmatically add to the table a column that contains a button, where the button should execute a function in the parent component.

This is an example of the markup that should be rendered by MyTableComponent:

 <kendo-grid-column>
      <ng-template kendoGridCellTemplate let-dataItem let-rowIndex="rowIndex">
           <button kendoButton (click)="edit(dataItem,rowIndex)" [icon]="'edit'"></button>
       </ng-template>
 </kendo-grid-column>

MyTableComponent should receive from its parent the information in the columns array, something like this:

columns: [ { isButton: true, buttonLabel: 'Edit', callbackFunc: parentFunc } ];

Can a template be generated programmatically in the table component?


回答1:


The scenario seems possible. You should add a cell template inside the column and use ngIf to render it only for button columns:

<ng-template *ngIf="column.isButton" kendoGridCellTemplate let-dataItem let-rowIndex="rowIndex">
    <button kendoButton (click)="column.callbackFunc(dataItem,rowIndex)" [icon]="column.icon">{{ column.buttonLabel }}</button>
</ng-template>

https://stackblitz.com/edit/angular-bzuy99?file=app/app.component.ts



来源:https://stackoverflow.com/questions/51898295/generating-templates-programmatically-in-kendo-for-angular-grid

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!