ag-grid angular 2标头模板

时间:2016-08-08 14:42:09

标签: angular ag-grid

我在ng2组件中包含了ag-grid。

我希望第一个标题成为具有父功能的复选框。

我怎么能从容器组件中做到这一点?

AG-grid.component

@Component({
  moduleId: module.id,
  selector: 'rg-grid',
  templateUrl: 'grid-control.component.html',
  directives: [AgGridNg2]
})

export class RgGridComponent {

  private gridOptions: GridOptions;
  private showGrid: boolean;

  @Input() rowData: any[];
  @Input() columnDefs: AbstractColDef[];
}

容器组件

@Component({
    moduleId: module.id,
    selector: 'alerts-table',
    templateUrl: 'alertsTable.component.html',
    directives: [RgGridComponent]
})

export class AlertsTableComponent implements OnInit {
    selectedAlert: IAlert;
    users: User[];
    checkedAlerts : IAlert[];
    displayDialog : boolean;
    dialogContent : string;
    columns : ColDef[];

    constructor(private _alertsService: AlertsService, private _usersService: UsersService) {
        this.displayDialog = false;
        this.investigationRequest = new EventEmitter<number>();
        this.columns = [ ??? ] 
        this.checkedAlerts = new Array<Alert>();
    }

1 个答案:

答案 0 :(得分:2)

ag-Grid不支持标头中的Angular 2组件。这是我们现在正在努力的事情,希望能在三周后发布。它可能是v8.0.0(本周我们将推出v7.2.0,然后下一个主要版本将有新标题)。