Getting Started
Usages
Columns
API References
ngx-panemu-table / Interface

EditingInfo

Generic types:T

The instance of this interface hold editing-related information for a table row.

Properties

NameTypeDescription
editor
{ [k: string]: CellEditorRenderer<T>; }

Object that stores the editors. The key is the BaseColumn.__key the value is the editor.

form
FormGroup<any>

Angular FormGroup that power the editing.

label
{ [k in keyof T]: string; }

Object that stores the column labels. The key is the BaseColumn.field the value is the label. This object is derived from ColumnDefinition.body.

originalRowData
T

Original row data used to detect what cells are changed.