Skip to content

Instantly share code, notes, and snippets.

@tslim
Created June 6, 2020 09:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tslim/d72cbb2bd3ba178579e7985d4e001e01 to your computer and use it in GitHub Desktop.
Save tslim/d72cbb2bd3ba178579e7985d4e001e01 to your computer and use it in GitHub Desktop.
# in live_component.html.leex
<%= f = form_for @changeset, "#",
id: "form",
phx_target: @myself, # Don't forget this
phx_change: "validate",
phx_submit: "save" %>
# Link to send delete event to the live component
<%= link "Delete User", to: "#", phx_click: "delete", phx_target: @myself, phx_disable_with: "Deleting..." %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment