Search
Grid.focusedCell Property
See Also
 






Gets the active grid cell.

Namespace: MindFusion.DataViews
File: Grid.js

 Syntax

JavaScript  Copy Code

get focusedCell() {}

 Property Value

GridCell. the cell.

 Example

The following code uses the element property of GridCell to change background of the focused cell:

JavaScript  Copy Code
grid.focusedCell.element.style.backgroundColor = "#FFDD75";

 See Also