Skip to content

[DropdownMenu] Issue #689

Open
Open
@longpoll

Description

@longpoll

The code from the example:

// ... //
<DropdownMenu.Trigger>
  <Button variant="soft">
    Options
    <DropdownMenu.TriggerIcon />
  </Button>
</DropdownMenu.Trigger>
// ... //

But I don't understand why this is done, because DropdownMenu.Trigger is the button itself. Why put a button inside a button?
https://codesandbox.io/p/sandbox/white-surf-22ds39

Image

Activity

sourabratabose

sourabratabose commented on Apr 1, 2025

@sourabratabose

DropdownMenu.Trigger is a component which renders a button itself. If you want to render your button instead of the one provided by radix set asChild attribute to true like
<DropdownMenu.Trigger asChild={true}> <button>Trigger</button> </DropdownMenu.Trigger>

longpoll

longpoll commented on Apr 1, 2025

@longpoll
Author

DropdownMenu.Trigger is a component which renders a button itself. If you want to render your button instead of the one provided by radix set asChild attribute to true like <DropdownMenu.Trigger asChild={true}> <button>Trigger</button> </DropdownMenu.Trigger>

That's exactly what I'm talking about. The problem is that the documentation describes exactly this implementation. That's why I created the issue to fix the inaccuracy in the documentation.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

      Participants

      @longpoll@sourabratabose

      Issue actions

        [DropdownMenu] Issue · Issue #689 · radix-ui/themes