Simon Guo
Simon Guo
After formatting your data, then create multiple Columns in a loop.
为 Table 设置 shouldUpdateScroll 为 false,解决表格数据更新后将不会重置滚动条位置。 ```tsx ```
你可以尝试把 translate3d 关闭一下。另外,你提供的 codesandbox 的示例应该是没有保存,我没看到有 Table 的示例。 ```tsx ```
通过你的示例我没能复现你说的白屏情况。 https://user-images.githubusercontent.com/1203827/183578636-70335440-f125-4f39-8702-7bd04b38e242.mp4 > Mac / Chrome 104.0.5112.79
`virtualized` 在技术实现上是要求固定行高或者提前自定义预设行高的,而 `wordWrap` 是在文本渲染到页面后再根据实际占有的行高动态设置的行高,所以从目前技术上来说这两个功能不能并存。
verticalAlign 是基于 `display: table-cell` 实现的。 设置 table-cell 后无法约束单元格的宽度,导致 ellipsis 失效。目前没想到合适的解决方法,你如果有什么建议,可以给我们提。
You can adjust the row height with `rowHeight`.
hi @jbeckton There are errors in the example code in the documentation. Should be `ObjectType().shape` ```diff -role: ObjectType.shape({ +role: ObjectType().shape({ name: StringType().isRequired('Name required'), permissions: ArrayType().isRequired('Permissions required'), }) ```
https://github.com/rsuite/rsuite-table#usage
hi @simplyfacadesAC You don't import a style file, and of course the component's styles won't be rendered. rsuite provides css and less files, you need to understand how remix imports...