Docs
API
  • selectRow(rowIndex: Number)

    Selects row at rowIndex and clear selected before.

    Example

    
    grid.selectRow(0);
    

    selectRow(rowIndex: Number, value: Boolean)

    Selects/deselects row at rowIndex and clear selected before.

    Example: Deselect row

    
    grid.selectRow(0, false);
    

    selectRow(rowIndex: Number, value: Boolean, multi: Boolean)

    Selects/deselects row at rowIndex and clear or not already selected.
    If multi is true than selected rows won't be deselected.

    Example: Selects 2 rows

    
    grid.selectRow(0, true, true);
    grid.selectRow(1, true, true);
    

    See also

    Method clearSelection
    Method deSelectRow
    Method disableSelection
    Method enableSelection
    Method getSelection
    Method selectRow
    Method setSelModel
    Method stopSelection