Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6623919
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T21:35:23+00:00 2026-05-25T21:35:23+00:00

I have a form that i use in jqgrid in add/edit popup @using (Html.BeginForm(Action,

  • 0

I have a form that i use in jqgrid in add/edit popup

@using (Html.BeginForm("Action", "Controller", FormMethod.Post, new { id = "formId" }))
{
//...
}

When i click a row that form opens. If i press the textbox and click ENTER this form submits. And it submits as a regular post request, not by using jqgrid. But if i click on the Save button it works as required.

buttons: {
                    'Save': function () {

                        if ($('#formId').valid()) {

                            $.ajax({
                                type: 'POST',
                                url: '@Url.Action( "Action", "Controller" )',
                                data: $('#formId').serialize(),
                                success: function (json) {
                                    $("#grid").trigger("reloadGrid");
                                },
                                error: function (e) {
                                    alert("Unable to save." + e);
                                },
                                dataType: "application/JSON"
                            });

                            $("#divForm").dialog('close');
                        }
                    },

But i want that when i click ENTER that will be as the save button click.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T21:35:23+00:00Added an answer on May 25, 2026 at 9:35 pm

    Try subscribing for the submit event of the form:

    <div id="formContainer">
        @using (Html.BeginForm("Action", "Controller", FormMethod.Post, new { id = "formId" }))
        {
            ...
        }
    </div>
    

    and then:

    $('#formContainer').delegate('#formId', 'submit', function (evt) {
        evt.preventDefault();
        if ($(this).valid()) {
            $.ajax({
                type: this.method,
                url: this.action,
                data: $(this).serialize(),
                success: function (json) {
                    $('#grid').trigger("reloadGrid");
                },
                error: function (e) {
                    alert("Unable to save." + e);
                },
            });
        }
    });
    

    and now in the Save button click force the form submission:

    'Save': function () {
        $('#formId').submit();
    }
    

    but probably it would be better to use the form’s submit button to submit a form.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a form that gets submitted using jQuery's .post(). In the corresponding view
I have an C# form application that use an access database. This application works
So I have an unbound form that I use to save data to a
I have a form that tries to modify a JComponent's graphics context. I use,
I have two radio buttons on my MVC form that I use to hide
I have a small jQuery plugin that I use for form AJAX validation. There
I have an In-house windows form app that I would like to use Spell
I have seen people say that it is bad form to use catch with
I have a timed page that I need to use to submit a form
I have a form that contains an html file browse button ( <input type=file

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.