rsuite-table icon indicating copy to clipboard operation
rsuite-table copied to clipboard

树形表格展开某一行时,表格会滚动到顶部

Open colabread opened this issue 2 years ago • 1 comments

树形表格展开某一row时,整个表格的scrolltop重置为0,表格会滚动到顶部 react version:18.0.8 react-dom version:18.0.3 rsuite-table version:5.5.1

colabread avatar Jun 13 '22 02:06 colabread

为 Table 设置 shouldUpdateScroll 为 false,解决表格数据更新后将不会重置滚动条位置。

<Table shouldUpdateScroll={false} >

simonguo avatar Jun 21 '22 06:06 simonguo