Angular

Fundamentals of ag-Grid with Angular: Cell Editing

Goals

  • Use the editable property in the column definition to enable editing of values in specific columns by specifying a boolean value.
  • Use the editable property in the column definition to programmatically enable or disable editing of cell values by specifying a predicate function.
  • Use the editable property in the defaultColDef object to enable editing of values for all columns in the grid by default.
  • Use the singleClickEdit input binding on the <ag-grid-angular> component specifying a boolean value to toggle single click editing.
  • Use the cellValueChanged output binding on the <ag-grid-angular> component to invoke a method that accepts the event object containing the new value after editing a cell.
 

I finished! On to the next chapter