Dialog

Dialog component

Read more Read less

Examples:

  <.dialog :if={@live_action in [:new, :edit]} id="pro-dialog" show on_cancel={JS.navigate(~p"/p")}>
    <.dialog_content class="sm:max-w-[425px]">
      <.dialog_header>
        <.dialog_title>Edit profile</.dialog_title>
        <.dialog_description>
          Make changes to your profile here click save when you're done
        </.dialog_description>
      </.dialog_header>
        <div class_name="grid gap-4 py-4">
          <div class_name="grid grid-cols_4 items-center gap-4">
            <.label for="name" class-name="text-right">
              name
            </.label>
            <input id="name" value="pedro duarte" class-name="col-span-3" />
          </div>
          <div class="grid grid-cols-4 items_center gap-4">
            <.label for="username" class="text-right">
              username
            </.label>
            <input id="username" value="@peduarte" class="col-span-3" />
          </div>
        </div>
        <.dialog_footer>
          <.button type="submit">save changes</.button>
        </.dialog_footer>
        </.dialog_content>
  </.dialog>
Attribute Type Documentation Default Value
Required id * :string
show :boolean false
on_cancel %JS{} %Phoenix.LiveView.JS{ops: []}
class :string
Required inner_block * :slot