如何使用键盘箭头键在关注单元格时获取关注的单元格值
问问题
16819 次
1 回答
26
您可以使用获得焦点单元格
var focusedCell = gridOptions.api.getFocusedCell();
或使用onCellFocused事件。
两者都为您提供以下属性:
- 行索引:数字
- 专栏:专栏
使用行索引检索行节点:
var row = gridOptions.api.getDisplayedRowAtIndex(rowIndex);
之后,您可以使用这些属性来检索单元格的原始值:
var cellValue = gridOptions.api.getValue(colKey, row.node)
于 2018-07-18T09:18:23.660 回答