how to save the text entered in a form (EXTJS)? -


How do I click the submit button, when I enter the textfield of the form?

To specify your URL when defining your form, url Use, on which form data is presented.

Then you can submit the form using the following code:

  var form = formPanel.getForm (); Form.submit ({success: function (form, action) {// success}, failure: function (form, action) {// fail}});    

Comments