Releases: HighPerformanceComponent/rc-grid
Releases · HighPerformanceComponent/rc-grid
v1.2.2
v1.2.1
v1.1.3
v1.1.2
v1.1.1
完成功能如下
- 固定列
- 列可拖拽改变大小
- 列头合并
- 虚拟滚动
- 单元格编辑
- 可展开表格
- 树形表格
添加以下方法
export interface GridHandle {
/** HTML 元素 */
element: HTMLDivElement | null;
/** 滚动到指定的列 */
scrollToColumn: (colIdx: number) => void;
/** 滚动到指定的行 */
scrollToRow: (rowIdx: number) => void;
/** 选中 */
selectCell: (position: {
rowKey?: string
colName?: string
}, enableEditor?: boolean | null) => void
}