Class IgxHierarchicalGridRow

Interface representing a row in the grid. It is essentially the blueprint to a row object. Contains definitions of properties and methods, relevant to a row

Hierarchy

Hierarchy

  • BaseRow
    • IgxHierarchicalGridRow

Implements

Properties

grid: GridType

Represent the grid instance, the row belongs to

index: number

The index of the row within the grid

Accessors

Methods

  • 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