Documentation

unselect

cancels selection of the specified element

void unselect(idrow_id);

Parameters

row_ididthe id of the row which should be unselected

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.unselect(row_id, column_id);
  • row_id - (string/int) the row id of the cell which should be unselected
  • column_id - (string/int) the column id of the cell which should be unselected

In case select:'column':

dtable.unselect(column_id);
  • column_id - (string/int) the id of the column which should be unselected
Back to top