Simon Guo
Simon Guo
The `appDir` function requires a minimum version of nodejs v16.8.0, you can modify the version by creating a `sandbox.config.json` [configuration file](https://codesandbox.io/docs/learn/sandboxes/configuration).  The `appDir` is currently an unstable beta feature....
There is a solution to add `"use client"` to the head of the page.jsx file to let nextjs render on the client side. ```jsx "use client"; import { Button }...
Try add rsuite to an external that requires a react/client context ```ts /** @type {import('next').NextConfig} */ const nextConfig = { experimental: { serverComponentsExternalPackages: ['rsuite'], }, } module.exports = nextConfig ```
This problem can be reproduced in React 18 and should be caused by asynchronous rendering. The following is a temporary solution. 1. Set up a `CustomProvider` for your app that...
If you want the height of the table not to overflow the screen, you can dynamically update the height of the table by monitoring the size of the window. ```tsx...
> 也许你可以把渲染的数组顺序倒过来? > > ```js > timelineData.reverse() > ``` 如果要同时考虑支持 `endless` 的话,把数据倒序不能完全解决。 `reverse` 属性或许是一种解决方式。 
Please reproduce your problem through [codesandbox](https://codesandbox.io/s/5vq6zo2z5l).
> @simonguo 我觉得最好的解决办法还是修改下获取rows的方法,通过统一的class大概率会出现问题,可以给table的row随机生成一个hash,通过hash来查会好一点。 @Ruobin521 可以考虑这样处理,不过不能使用随机 hash , SSR 的时候会有问题。可以使用 [react useId](https://reactjs.org/docs/hooks-reference.html#useid),一个 table 生成一个,作用于当前 table 的所有 row 上。
@kevincolten thanks 😀
Hi @rcanete2515 `wordWrap` has rendering issues. It is recommended that you use `fullText` instead of `wordWrap`. https://rsuitejs.com/components/table/#show-full-text-of-cells