Class IgxHierarchicalGridRow

Hierarchy

Hierarchy

  • BaseRow
    • IgxHierarchicalGridRow

Implements

Properties

grid: GridType
index: number

Accessors

Methods

  • Removes the specified row from the grid's data source. This method emits onRowDeleted event.

    // delete the third selected row from the grid
    this.grid.selectedRows[2].delete();

    Returns void

  • Updates the specified row object and the data source record with the passed value.

    // update the second selected row's value
    let newValue = "Apple";
    this.grid.selectedRows[1].update(newValue);

    Parameters

    • value: any

    Returns void