我想@blueprintjs/table
使用箭头/tab 键导航。我遵循了这些文档,但找不到任何解决方案。任何人都可以帮助提供示例代码/解决方案。
我当前的组件如下。
import React, { Component } from 'react';
import { EditableCell, Column, Table } from "@blueprintjs/table";
class TestComponent extends Component {
constructor(props) {
super(props);
this.renderCell = this.renderCell.bind(this);
}
renderCell (rowIndex, columnIndex) {
const value = null;
return (
<EditableCell alue={value == null ? "" : value}/>
);
}
render() {
const columns = ["Please", "Rename", "Me"].map((_ , index) => {
return (
<Column key={index} cellRenderer={this.renderCell} enableFocus="true"/>
);
});
return (
<Table numRows={7} enableFocus="true">{columns}</Table>
);
}
}
export default TestComponent;