Ag-Grid:如何获得集中的单元格值

时间:2018-07-17 15:44:38

标签: grid ag-grid ag-grid-react

如何使用键盘上的箭头键在聚焦于单元格时获取聚焦的单元格值

1 个答案:

答案 0 :(得分:7)

您可以使用来获取焦点单元格

@RunWith(SpringRunner.class)
@DataJPATest
public class CarTester {

 @Autowired
 CarRepository carRepository;

 @Test
 public void test() {
    carRepository.save(new Car(1, "AAA", "BBB", 1111));
    carRepository.findAll();
 }
}

或使用 onCellFocused 事件。

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

  • rowIndex:数字
  • 列:列

使用行索引检索行节点:

var focusedCell = gridOptions.api.getFocusedCell();

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

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