使用 ag-grid 的 Angular 框架,并在组件内引入 ag-grid,然后在组件中使用常用的 ag-grid 选项来定义默认行为。示例代码如下:
在 app.module.ts 中添加以下代码来引入 ag-grid:
import { AgGridModule } from 'ag-grid-angular';
@NgModule({
imports: [
AgGridModule.withComponents([])
],
// ...
})
export class AppModule { }
在组件的 HTML 文件中添加下面的代码来定义 ag-grid 表格:
在组件的 TypeScript 文件中,定义rowData、columnDefs和defaultColDef。
import { Component } from '@angular/core';
@Component({
selector: 'app-my-grid',
templateUrl: './my-grid.component.html',
styleUrls: ['./my-grid.component.css']
})
export class MyGridComponent {
rowData = [
{ make: 'Toyota', model: 'Celica', price: 35000 },
{ make: 'Ford', model: 'Mondeo', price: 32000 },
{ make: 'Porsche', model: 'Boxter', price: 72000 }
];
columnDefs = [
{ field: 'make', sortable: true, filter: true },
{ field: 'model', sortable: true, filter: true },
{ field: 'price', sortable: true, filter: true }
];
defaultColDef = {
resizable: true
};
}
这样,我们的 ag-grid 就已经被定义出来了。其中,rowData 为表格数据,columnDefs 为列数据,defaultColDef 为所有列的默认属性。