0.0.11 • Published 2 years ago

@ag-grid-extension/angular v0.0.11

Weekly downloads
-
License
-
Repository
-
Last release
2 years ago

AgGridExtension

Directives

CreationRow

Adds an empty creation row at the bottom of the grid, for adding new rows.

// your.module.ts
import { CreationRowModule } from '@ag-grid-extension/angular';

Input(): `idField`
Output(): `creationRowReady`, `rowAddedToGrid`, `rowCreated`

@NgModule({
  imports: [CreationRowModule],
  ...
})
// Optional outputs
onCreationRowReady(event: CreationRowEvent){}
onRowAddedToGrid(event: CreationRowEvent){}
onRowCreated(event: CreationRowEvent){}
<!-- In your html -->
<ag-grid-angular
  creationRow
  idField="id"
  (creationRowReady)="onCreationRowReady($event)"
  (rowAddedToGrid)="onRowAddedToGrid($event)"
  (rowCreated)="onRowCreated($event)"
  ...
></ag-grid-angular>
0.0.11

2 years ago

0.0.10

2 years ago

0.0.9

2 years ago

0.0.8

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago