Outline
- Fundamentals of ag-Grid with Angular
- Fundamentals of ag-Grid with Angular: Data
- Fundamentals of ag-Grid with Angular: Columns
- Fundamentals of ag-Grid with Angular: Filtering
- Fundamentals of ag-Grid with Angular: Rows
- Fundamentals of ag-Grid with Angular: Styling
- Fundamentals of ag-Grid with Angular: Cell Editing
- Fundamentals of ag-Grid with Angular: Custom Components
Outline
- Fundamentals of ag-Grid with Angular
- Fundamentals of ag-Grid with Angular: Data
- Fundamentals of ag-Grid with Angular: Columns
- Fundamentals of ag-Grid with Angular: Filtering
- Fundamentals of ag-Grid with Angular: Rows
- Fundamentals of ag-Grid with Angular: Styling
- Fundamentals of ag-Grid with Angular: Cell Editing
- Fundamentals of ag-Grid with Angular: Custom Components
Goals
- Use the
editable
property in the column definition to enable editing of values in specific columns by specifying aboolean
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 thedefaultColDef
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 aboolean
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.