I have a form with some elements like:

<input type="text" name="maxResultsPlain"
                    id="maxResultsPlain" class="number" value="10">

The form includes one input of type 'file'. The whole business is wired up to a REST server via $(form).ajaxSubmit(submitOptions), invoked from the submitHandler of the validate plugin, http://bassistance.de/jquery-plugins/jquery-plugin-validation/.

Whenever I submit, the form input fields go back to their default values as per the value attribute. Is there a way to prevent this?

A Chrome DOM breakpoint suggests that this is happening as a result of the machinations of the validation plugin, so I suspect that the issue is there.

Central spot in the code:

$("#query-upload").validate({
    submitHandler: function(form) {
        $(form).ajaxSubmit(submitOptions);
    }
});
link|improve this question

79% accept rate
Can you check data returned form server, because as you said you are using REST standard, there is possibility that form contents is being loaded from server!... If you want form fields to be empty use $(form).ajaxSubmit({clearForm:true, resetForm:false}); If no one of these helps, then check that you have latest version of jquery-form or set form fields manually using jQuery, also try to set break point over ajaxSubmit itself to see what's going on using firebug... – Beygi Jun 28 '11 at 21:33
I am sure that this is not the case. I wrote every line of this. – bmargulies Jun 28 '11 at 21:41
I'm afraid but i've seen jquery-form source, it will skip form-test and clear if those options are false, and there is no other reference to those function in jquery-form but the ajaxSubmit function, could you please set break point there, and check it out!... – Beygi Jun 28 '11 at 21:48
Yes, but the backtrace in the debugger points to validate, not forms. – bmargulies Jun 28 '11 at 21:50
I'm sorry, is the form posted using ajax, because of the file upload in form may cause application to work unexpectedly... – Beygi Jun 28 '11 at 21:52
show 5 more comments
feedback

1 Answer

There are resetForm and clearForm options that you can try and set to false to see if that will help.

link|improve this answer
1  
those are by default null – mihsathe Jun 28 '11 at 17:38
And setting them explicitly to false didn't help any. – bmargulies Jun 28 '11 at 18:58
feedback

Your Answer

 
or
required, but never shown

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