pjatupon

Results 5 comments of pjatupon

I want to display like this ![image](https://github.com/user-attachments/assets/aa2edda3-1890-4a36-90b8-2eaa097bdde3)

> I had a similar problem, downgrading @react-aria/i18n to version 3.11.1 solved the problem. It's work. Thank you. ![image](https://github.com/user-attachments/assets/45ec4265-2cde-41f9-b90c-cb0ffd371a98)

i found solution check iframe loaded like this ``` const iframeRef = useRef(null); const [isIFrameLoaded, setIsIFrameLoaded] = useState(false); const iframeCurrent = iframeRef.current; useEffect(() => { iframeCurrent?.addEventListener('load', () => setIsIFrameLoaded(true)); return...

@ElementaitaStopover I can't found any solution. But I create custom component base on this vendor. It work for me. ![image](https://github.com/user-attachments/assets/27196b3f-06d2-4634-ac82-3b8ced0a67e8)

my application develop by nextjs + nextui. first. install popover `npm install @nextui-org/popover` second. create component file name "monthPicker.tsx" ``` import { Button, Popover, PopoverContent, PopoverTrigger } from '@nextui-org/react'; import...