Tagged Questions
5
votes
4answers
2k views
jquery form plugin, no error handling
It seems that there are no error handling facility in the Jquery.Form plugin, which is very frustrating. Even though the documentation says we can use the $.ajax options, I still cannot make use of ...
3
votes
4answers
123 views
Getting How a Form Was Submitted on submit event
I have a form that has a couple of buttons on it. Two of the buttons use ajax to submit the form and clear it so that the user can add multiple records before moving on. The last button is for when ...
2
votes
1answer
1k views
jQuery Form plugin ajaxSubmit callback timing
I have the following code bound to the click event of a button:
function submitForm() {
var $submitOK = false;
$('#form1').ajaxSubmit({
beforeSubmit: function() {
...
0
votes
1answer
26 views
I have been working with the jQuery form plugin and i want to upload multiple images
I want to select multiple images and then submit them into a folder.
I also want to insert values such as the image file name and size into the database.
Can anybody suggest how to do this?
I ...
0
votes
2answers
100 views
Jquery.form AjaxSubmit adding tags to response?
When I ajaxSubmit a form, the service returns a number. For some reason, ajaxSubmit seems to add a bunch of tags to it.
form.ajaxSubmit(function(data){
alert(data);
});
});
...
0
votes
1answer
65 views
Json of jquery form plugin cannot be acquired
I will upload the file by using jquery form plugin, and question on the phenomenon of process of $.ajaxForm becoming timeout when the response data is json.
Processing by the servers end is done ...
0
votes
1answer
411 views
jQuery form plugin - Uncaught TypeError on file upload
there is no problem when I don't select any file for upload, when I just fill the other inputs than post form, It's working. but when I choose a file for image upload than post it, I'm getting this ...
0
votes
0answers
184 views
how to make ajax call within jquery success function (asp.net mvc)
I used jquery form plugin to upload and it worked fine, for suppose i want to delete the uploaded file, again i need to make a call to controller and update view again ? in success function of this ...
0
votes
1answer
137 views
jquery forms file upload: why do field values reset?
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 ...
0
votes
0answers
63 views
Unable to render javascript completely in my Rails app for ajax upload + ajax display
I am building a POC in my rails app for ajax image upload and ajax display using https://github.com/adamlogic/jquery-jaxy plugin. My config is pretty much outdated - Rails 2.0.2 and Ruby 1.8.7. I am ...
0
votes
0answers
291 views
Issues implementing jquery-form plugin for displaying image via an ajax call in my rails poc
I am trying to implement a POC wherein I can post a message + image and get the same working via AJAX to display them both for each new entry without the page reloading.
I am using a config of Ruby ...
0
votes
0answers
165 views
Which ajax file upload plugin would best suit my configuration of Rails 2.0.2 and Ruby 1.8.7
I am trying to implement uploading of images in my project with some kind of "faux" AJAX..
as I have read that it can't be done otherwise.. Kindly correct me on this in case I am wrong...
I have ...
0
votes
3answers
307 views
targeting a specific form with serialize()
Following on from my previous question, which was so quickly answered by Meder it wasn't funny, there's now an additional question that's popped up in the process of making a reusable jQuery form ...
-1
votes
1answer
82 views
404 converted to success in JQuery forms ajaxSubmit
My options to $(form).ajaxSubmit(...) include:
type : "post",
dataType : "text",
no jsonp. No json, even.
However, there is a file upload. This causes jquery forms to use an iframe, which ...