admin管理员组文章数量:1341401
This ponent contains Popover & Input from shadcn. The issue I'm facing is that when I click on the Input to open the Popover, the Input loses focus, and the cursor moves out.
Expected behavior:
When clicking on the Input ponent, the Popover should open, and the Input should remain focused with the cursor inside it, allowing the user to type without any additional clicks.
Link to Sandbox
"use client";
import { Input } from "@/ponents/ui/input";
import {
Popover,
PopoverContent,
PopoverTrigger,
} from "@/ponents/ui/popover";
export default function Searchbar() {
return (
<div className="w-1/3">
<Popover>
<PopoverTrigger>
<Input />
</PopoverTrigger>
<PopoverContent>Place content for the popover here.</PopoverContent>
</Popover>
</div>
);
}
This ponent contains Popover & Input from shadcn. The issue I'm facing is that when I click on the Input to open the Popover, the Input loses focus, and the cursor moves out.
Expected behavior:
When clicking on the Input ponent, the Popover should open, and the Input should remain focused with the cursor inside it, allowing the user to type without any additional clicks.
Link to Sandbox
"use client";
import { Input } from "@/ponents/ui/input";
import {
Popover,
PopoverContent,
PopoverTrigger,
} from "@/ponents/ui/popover";
export default function Searchbar() {
return (
<div className="w-1/3">
<Popover>
<PopoverTrigger>
<Input />
</PopoverTrigger>
<PopoverContent>Place content for the popover here.</PopoverContent>
</Popover>
</div>
);
}
Share
Improve this question
asked May 2, 2024 at 10:46
Rayaan RRayaan R
951 silver badge6 bronze badges
1 Answer
Reset to default 15You can fix this like so:
<Popover>
<PopoverTrigger>
<Input />
</PopoverTrigger>
<PopoverContent onOpenAutoFocus={(e) => e.preventDefault()}>
Place content for the popover here.
</PopoverContent>
</Popover>
Shadcn's <Popover />
uses Radix UI under the hood. The Radix docs for <Popover />
tell you how to prevent the popover from being focused, but it's not apparent. You have to hover the little "i" icon next to onOpenAutoFocus
to see that you need to call preventDefault
on the event. In my opinion, a section in their docs dedicated to this would be more helpful than hiding it behind a tooltip.
Here is a working example.
本文标签: javascriptInput loses focus when Popover opens in ShadCNStack Overflow
版权声明:本文标题:javascript - Input loses focus when Popover opens in ShadCN - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743625064a2512152.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论