Documentation

select

selects the specified element

void select(idrow_id,booleanpreserve);

Parameters

row_ididthe row id
preservebooleansets whether the previous selection should be saved

See also

Details

Alternative syntax

The parameters of the method differ depending on the value the select parameter is set to.

The main description above relates to select: 'row'.

In case select:'cell'

dtable.select(row_id, column_id, preserve);
  • row_id - (string/int) the row id
  • column_id - (string/int) the column id
  • preserve - (bool) sets whether the previous selection should be saved

In case select:'column':

dtable.select(row_id, column_id, preserve);
  • column_id - (string/int) the column id
  • preserve - (bool) sets whether the previous selection should be saved
Back to top