Dialog

Dialog component

Read more Read less

Examples:

<.dialog id="pro-dialog" open={true}>
  <.dialog_trigger>Click me</.dialog_trigger>
  <.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
open :boolean false
class :string
close-on-outside-click :boolean true
on-open :any

Handler for dialog open event. Support both server event handler and JS command struct

on-close :any

Handler for dialog closed event. Support both server event handler and JS command struct

Required inner_block * :slot
<.dialog_trigger>
        <.button>
Open modal
</.button>
</.dialog_trigger>
<.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="grid gap-4 py-4">
      <div class="grid grid-cols-4 items-center gap-4">
        <.label html-for="name" class="text-right">
          Name
        </.label>
        <.input id="name" value="Dzung Nguyen" class="col-span-3" />
      </div>
      <div class="grid grid-cols-4 items-center gap-4">
        <.label html-for="username" class="text-right">
          Username
        </.label>
        <.input id="username" value="@bluzky" class="col-span-3" />
      </div>
    </div>
    <.dialog_footer>
      <.button type="submit">save changes</.button>
    </.dialog_footer>
</.dialog_content>