Sending a form when pressing enter
I have this form:
If I remove the Select component it works as intended, that is, it will send the form when I press enter while focused on the TextInput. But if the Select is present it does nothing. I do not have any validation going on that I am aware off...
Here is my blade:
Solution:Jump to solution
Just in case someone is looking for an answer to this, the only way I found to do that is to create a hidden submit button.
```php
protected function promptForm(Form $form): Form
{
return $form...
1 Reply
Solution
Just in case someone is looking for an answer to this, the only way I found to do that is to create a hidden submit button.
I guess there is a better way to do this but oh well...