This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

@ag-grid-extension/angular
TypeScript icon, indicating that this package has built-in type declarations

0.0.11 • Public • Published

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>

Readme

Keywords

none

Package Sidebar

Install

npm i @ag-grid-extension/angular

Weekly Downloads

6

Version

0.0.11

License

none

Unpacked Size

59.8 kB

Total Files

16

Last publish

Collaborators

  • benjrei