Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ReactJS: how to trigger form submit event from another event

I've two react events:

  1. Form submit event

    sendMessage: function(event){
        console.log(event);
        event.preventDefault();
    },
    
  2. keyPress Event

    textareaKeypress: function(event){
        if (event.which == 13 && !event.shiftKey){
            document.getElementById('messagebox').submit();
        }
    },
    

but the reactJS is not capturing the form submit triggered by textareaKeypress. How can I call the sendMessage from textareaKeypress with proper event?

like image 377
Dheerendra Avatar asked Mar 06 '15 18:03

Dheerendra


People also ask

How do you submit a form from another component in React?

js import React, { Component } from "react"; class App extends Component { submitForm = () => { this. formRef. dispatchEvent( new Event("submit", { bubbles: true, cancelable: true }) ) }; render() { return ( <div className="app"> <form ref={ref => this. formRef = ref} onSubmit={e => { e.

How do you redirect after form submit in React JS?

To redirect on form submit using React Router: Use the useNavigate() hook, e.g. const navigate = useNavigate(); . Call the navigate() function passing it the path - navigate('/contacts') . The navigate() function lets us navigate programmatically.

What event triggers when a form is submitted?

The onsubmit event occurs when a form is submitted.


2 Answers

I learned something new today: this is just how the DOM works.

From the MDN site:

The form's onsubmit event handler (for example, onsubmit="return false;") will not be triggered when invoking this method from Gecko-based applications. In general, it is not guaranteed to be invoked by HTML user agents.

According to the HTML spec:

The submit() method, when invoked, must submit the form element from the form element itself, with the submitted from submit() method flag set.

followed by (section 4.10.22.3)

If the submitted from submit() method flag is not set, then fire a simple event that bubbles and is cancelable named submit, at form.

So, the event is not fired if the submit() method flag is set.


I was able to get the behavior you (and I) were expecting via the following code (JSFiddle example):

<form onSubmit={this.handleSubmit} ref="form">
  <textarea onKeyPress={this.handleKeyPress} />
</form>

// ...

this.refs.form.getDOMNode().dispatchEvent(new Event("submit"));

(You'll need more verbose code in IE.)

jQuery's $(form).submit() delegates to $(form).trigger("submit"), so I expect it's a similar workaround.

like image 166
Michelle Tilley Avatar answered Sep 28 '22 08:09

Michelle Tilley


It's your component, so you don't need to worry about passing actual events around. You have some event handlers, and then you have the actual action.

sendMessage: function(){
    console.log('message:', this.state.message);
},
handleFormSubmit: function(event){
    event.preventDefault();
    this.sendMessage();
},
handleTextareaKeypress: function(event){
    if (event.which == 13 && !event.shiftKey){
        this.sendMessage();
    }
}
like image 22
Brigand Avatar answered Sep 28 '22 07:09

Brigand