GridCell

SAPGUI. GridCell

GridCell

Constructor

new GridCell()

A GridCell object

Methods

click() → {Promise.<void>}

Emulates a click on the cell.
Returns:
a promise that is fulfilled when the operation is performed.
Type
Promise.<void>

isEditable() → {Promise.<boolean>}

Indicates whether the cell is editable.
Returns:
a promise that is fulfilled with the editable status of this cell.
Type
Promise.<boolean>

openPossibleEntries() → {Promise.<void>}

Opens the list of possible entries.
Returns:
a promise that is fulfilled when the operation is performed.
Type
Promise.<void>

setCheckBox(state) → {Promise.<void>}

Selects or unselects the checkbox in the grid cell.
Parameters:
NameTypeDescription
statebooleanThe state of the checkbox of this cell.
Returns:
a promise that is fulfilled when the operation is performed.
Type
Promise.<void>

setValue(value) → {Promise.<void>}

Set the content of this cell.
Parameters:
NameTypeDescription
valuestringThe content of this cell.
Returns:
a promise that is fulfilled when the operation is performed.
Type
Promise.<void>

value() → {Promise.<string>}

The content of this cell.
Returns:
a promise that is fulfilled with the content of this cell.
Type
Promise.<string>