Ag-Grid:如何获得聚焦的单元格值

Ag-Grid : How to get the focused cell value

如何使用键盘方向键获取焦点单元格时的焦点单元格值

您可以使用

获取焦点单元格
var focusedCell = gridOptions.api.getFocusedCell();

或使用 onCellFocused 事件。

两者都为您提供以下属性:

  • 行索引:数字
  • 列:列

使用行索引检索行节点:

var row = gridOptions.api.getDisplayedRowAtIndex(rowIndex);

之后,您可以使用这些属性来检索单元格的原始值:

var cellValue = gridOptions.api.getValue(colKey, row.node)