Skip to main content

setSelectedCell()

Description

Selects the specified cell(s)

Usage

setSelectedCell(cell: string): void;

Parameters

  • cell - (required) the id(s) or a range of selected cell(s)

Example

const spreadsheet = new dhx.Spreadsheet("spreadsheet", {
// config parameters
});
spreadsheet.parse(data);

// selecting a cell
spreadsheet.selection.setSelectedCell("B5");

// selecting a range of cells
spreadsheet.selection.setSelectedCell("B1:B5");

// selecting scattered cells
spreadsheet.selection.setSelectedCell("B7,B3,D4,D6,E4:E8");

Related articles: Work with Spreadsheet