vote up 1 vote down star

I have several forms inside DIVS on my page.

I have one form which contains a text field and is always visible, and this is where the user hits 'enter' key and submits...

I want to get values selected in the other forms on the page, and submit them all together, not one by one, so that my PHP code can use "ALL VALUES" and search a mysql database...

Is this possible by javascript using the "<form onsubmit>" to call a javascript?

any codes would be appreciated...

thanks

flag

Is there any good reason not to use one form for all the elements, thereby avoiding the need for what will inevitably be an ugly hack which won't work when scripting is disabled? – NickFitz Oct 22 at 16:17

4 Answers

vote up 2 vote down check

Without some Javascript hocus-pocus, you can't. One form = one request.

You can do it with JS, and you have a few options. The easiest would be to loop through all the forms on the page, and basically duplicate all the input fields and values into one form and then submit that combined form.

With jQuery it'd go something like this:

$("form").submit(function() {
    combineAndSendForms();
    return false;        // prevent default action
});

function combineAndSendForms() {
    var $newForm = $("<form></form>")    // our new form.
        .attr({method : "POST", action : ""}) // customise as required
    ;
    $(":input:not(:submit, :button)").each(function() {  // grab all the useful inputs
        $newForm.append($("<input type=\"hidden\" />")   // create a new hidden field
            .attr('name', this.name)   // with the same name (watch out for duplicates!)
            .val($(this).val())        // and the same value
        );
    });
    $newForm
        .appendTo(document.body)  // not sure if this is needed?
        .submit()                 // submit the form
    ;
}
link|flag
What is this method called, cant find anything when searching google for "adding data to form + javascript" – camran Oct 22 at 14:51
vote up 2 vote down

You need to make a script which will collect the data from the forms, and inject them into the only form that is visible. Only one form will be submitted, you can not submit multiple forms. You can create multiple hidden fields, or you can construct a single hidden field in that form, then use javascript to collect all the data from the various forms, then create a JSON string, set the value of the hidden one, and submit.

Edit: Say you have a single hidden input like this:

<input type='hidden' name='hiddenfield' id='hiddenfield' />

you could use JQuery to do this:

$('#hiddenfield').val('myvalue');

To get the value from other forms is as simple as calling $('#elementid').val()

before form submission. To use JQuery, go to the jquery website, download the library, and link it (follow their installation guide).

link|flag
How would I inject values into a form? – camran Oct 22 at 14:48
1  
Appending hidden fields to the form, I'm guessing. – iddqd Oct 22 at 14:50
vote up 1 vote down

Wrap the whole Page in your form tag (if possible) and use the server side code, along w/ Javascript, to handle your business rule validation.

kind of a hack solution, but it should minimize the necessity for Javascript "hacks" depending on your skill level with javascript.

link|flag
I like this solution. One form with multiple named "submit" buttons. You PHP script will determine which input fields to look at based on which submit button was pressed. The rest is thrown to the proverbial "bit-bucket". This seems cleaner and simpler to me - and gives a good separation of logic. (The view can remain dumb) – ChronoFish Oct 22 at 15:06
vote up 1 vote down

you can add an onsubmit to that form, and then collect other values with javascript:

<input type="hidden" name="hidden1" id="hidden1" />
<input type="hidden" name="hidden2" id="hidden2" />
<script>
document.getElementById("the_form").onsubmit = function(){
    document.getElementById("hidden1").value = document.getElementById("other-field1").value;
    document.getElementById("hidden2").value = document.getElementById("other-field2").value;
};
</script>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.