EditRowOptions
Interface
Provides additional options for the editRow method. See example.
Definition
Package:@progress/kendo-angular-grid
Syntax:
TS
public onEdit(grid: GridComponent): void {
grid.editRow(2, { skipFocus: true, columnIndex: 1 });
}
Properties
columnIndex?
number
Sets which column receives focus after the row editor opens. The first column receives focus by default.
skipFocus?
boolean
If set to true, skips focusing the row's edit element. Defaults to false.