Simon Guo

Results 268 comments of Simon Guo

Hi @vendramini Can you provide an example that I can refer to? For example, a demo on codesandbox.

Support `weekStart` in [v5.62.0](https://github.com/rsuite/rsuite/releases/tag/v5.62.0). https://rsuitejs.com/components/calendar/#custom-week

Hi @AgileData2020 This is a bug that Nextjs has not solved yet. https://github.com/vercel/next.js/issues/58776 There are two ways to temporarily solve it: 1. Add `use client` comment in your file. 2....

Simplified the import path of the component in `[email protected]`. ```ts import FlexboxGrid from 'rsuite/FlexboxGrid'; import FlexboxGridItem from 'rsuite/FlexboxGridItem'; ``` > Complete example reference: https://github.com/rsuite/rsuite/tree/main/examples/with-nextjs-app

https://stackblitz.com/edit/react-jczr8p?file=index.js Please fork this example to reproduce your issue.

Hi @Edymov You can get the depth of the tree in rowData through the `onExpandChange` callback, and then dynamically set the column width. ```ts onExpandChange: (expanded: boolean, rowData: Row) =>...

Hi @HelloIAmBanana, can you give me some examples? In what scenarios, what text would you change to?

Thank you for your suggestion and for taking the time to clarify your proposal. The DatePicker currently supports the format prop, which allows customizing the date format to standard patterns...

当表格的 data 更新会使得整个表格重新计算渲染,你可以尝试将 input 输入的值单独存储在一个 state 中,在 input 的 value 上直接设置 state 里的值。