trisolaran

trisolaran

Hello! I hope you’re all enjoying your summer! (or winter if you live in the southern hemisphere)

Suppose I have a key event binding on a text input field in a form in liveview:

 <%= text_input(@form, "text_input", phx_keyup: "keyup" %>

I can handle the key event in my live view code easily. However, hitting certain keys may trigger some unwanted default action in the browser. For example, hitting “Enter” may trigger a form submit.

I can prevent these default actions using client hooks. I can capture the key event in JS and then call event.preventDefault() before sending the event to my liveview using pushEvent(). Although this works, it is less clean and more complex than doing everything in liveview.

So my questions are:

  1. Can browser’s default actions be prevented directly in LV without using client hooks? I suspect this is not possible.
  2. If it’s not possible, would it make sense to add a LV binding that disables default actions? Something like: phx-prevent-default. Would anybody else find this useful? If not, why? :slight_smile:

Thanks for any comment!

Showing Posts 1 to 5

mindok

mindok

Ha - found this looking for a solution. So looks like it will be a hook unless someone has a better idea…

trisolaran

trisolaran OP

Thanks. If you find a better way to do it I’d be interested

Xty

Xty

One approach that I have used in the past to get around the “Submit form on enter” is described in this StackOverflow post: https://stackoverflow.com/a/51507806

It boils down to placing a disabled invisible submit button before a visible submit button in the DOM, which will prevent the form from submitting on Enter.

trisolaran

trisolaran OP

@Xty yes that works thanks. It’s a good old trick :+1: However, that requires the ability to modify the form. My use case is a bit different: I’m developing an input component that will be used as a library by others, and I would like the component to be able to say “don’t submit on enter” because it uses the enter key as part of its internal behavior. Hooks work fine for that, and as far as I know, they are the only option for now.

user20230119

user20230119

This worked for me.

<:actions>
  <.button phx-disable-with="Saving..." disabled={true} class="hidden">Disable Enter to Submit</.button>
  <.button phx-disable-with="Saving..." disabled={@saved}>Save</.button>
</:actions>
— All posts loaded —

Where Next? Top

Trending in Questions Top

Blokh
Hey guys, I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly Do you guys have any suggestions what is the best prac...
New
kszambelanczyk
Hello! Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app. I creat...
New
RemyXRenard
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
velrest
So my question is quite simple and i have found no conclusive answer on forum, google or AI. Should we use :erlang.float for Integer to ...
New
samoloth
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
FlyingNoodle
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
psy-q
I’m trying to set up Emacs with elixir-ls via lsp-mode and credo via Flycheck. This should mostly be preconfigured as Flycheck picks up c...
New

Other Trending Topics Top

mudasobwa
I am happy to introduce the very α version of the new programming language compiled to BEAM. Welcome Cure. It has literally three kille...
New
garrison
Hobbes is a low-level distributed database for the Elixir programming language. Hobbes provides a simple, safe, and scalable storage lay...
New
marciok
Hi there! We created Gust: A task orchestrator inspired by Airflow. For those who have never heard about Aiflow, it’s a Python-based wor...
New
jimsynz
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
mcass19
ExRatatui lets you cook up rich terminal UIs in Elixir, powered by Rust’s ratatui via Rustler NIFs. Build interactive terminal applicatio...
New
Damirados
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge &amp; Solve. They are GUI (Emerge) and State management (S...
New

We're in Beta

About us Mission Statement

Options

Thread Display Mode




Thread Preview

Skip Thread Previews