0.0.11 • Published 3 years ago

@ag-grid-extension/angular v0.0.11

Weekly downloads
-
License
-
Repository
-
Last release
3 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

3 years ago

0.0.10

3 years ago

0.0.9

3 years ago

0.0.8

3 years ago

0.0.7

3 years ago

0.0.6

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago