alibaba / ali-react-table

Performent, flexible and modern React table component.
https://ali-react-table.js.org/
MIT License
956 stars 312 forks source link

问下,怎么固定第一行数据? #340

Closed yuhaoz closed 1 year ago

yuhaoz commented 1 year ago

问下,怎么固定第一行数据?

HuColin commented 1 year ago

在不开启虚拟滚动的情况下,可以通过 css 样式覆盖的方式设置 表格的容器高度为 100%,然后设置第一行的 postion 为 sticky 效果如下: image image 甚至可以通过 getRowProps 指定特定行数具有吸顶的效果

yuhaoz commented 1 year ago

谢谢