[jQuery] Re: File upload - json result ERRORZ!

2009-10-14 Thread Florent Paillard
Same problem here. Where do you add the textarea ? On the server side ? Do you enclose your JSON string between textarea and / textarea before returning it to browser? On Sep 29, 9:25 am, Flynsarmy flynsa...@gmail.com wrote: The problem was due to me not wrapping the result in a textarea This

[jQuery] Re: File upload - json result ERRORZ!

2009-09-29 Thread Flynsarmy
The problem was due to me not wrapping the result in a textarea This is not a bug and is not a problem with the jquery form plugin :)

[jQuery] Re: file upload empty

2009-09-12 Thread Mike Alsup
I have a form with some text input and a file input. When i try to upload the form with the Form Plugin, the $_FILES array came empty. The field name is newImage, so when I try to show $_FILES['newImage'] ['tmp_name'] i can see nothing. Instead I can see the file name if i do

[jQuery] Re: File upload using HTTP PUT method

2009-08-04 Thread russellneufeld
Perhaps the jQuery mailing list wasn't the best place to post this question. Can anyone recommend another active javascript mailing list which might be able to answer this? Thanks.

[jQuery] Re: file upload field and standard fields

2009-02-10 Thread phicarre
The solution: to put a delay before to close the dialog. On 2 fév, 14:11, phicarre gam...@bluewin.ch wrote: ... and $_POST is empty when $_FILES is full !!! On 2 fév, 14:07,phicarregam...@bluewin.ch wrote: Yes I know ! read the first message for the problem !! $_FILES is always empty

[jQuery] Re: file upload field and standard fields

2009-02-02 Thread phicarre
... and $_POST is empty when $_FILES is full !!! On 2 fév, 14:07, phicarre gam...@bluewin.ch wrote: Yes I know ! read the first message for the problem !! $_FILES is always empty when $_POST is full On 2 fév, 13:14, jQuery Lover ilovejqu...@gmail.com wrote: Well, it seems you are getting

[jQuery] Re: file upload field and standard fields

2009-02-02 Thread phicarre
Yes I know ! read the first message for the problem !! $_FILES is always empty when $_POST is full On 2 fév, 13:14, jQuery Lover ilovejqu...@gmail.com wrote: Well, it seems you are getting your 'nom' and 'phenom' text fields... and yes, domb is right, file information data is stored in $_FILES

[jQuery] Re: file upload field and standard fields

2009-02-02 Thread donb
File data is not put into the POST collection, it goes in the $FILES collection On Feb 2, 5:35 am, phicarre gam...@bluewin.ch wrote: No explanation ;-( On 30 jan, 17:10, phicarre gam...@bluewin.ch wrote: I replace my code by this one: ? echo VAR DUMP:p /;   var_dump($_POST); ?

[jQuery] Re: file upload field and standard fields

2009-02-02 Thread phicarre
No explanation ;-( On 30 jan, 17:10, phicarre gam...@bluewin.ch wrote: I replace my code by this one: ? echo VAR DUMP:p /;   var_dump($_POST); ? and the result is: VAR DUMP:p /array(3) {   [nom]=   string(0)   [prenom]=   string(0)   [MAX_FILE_SIZE]=   string(6) 10} File:

[jQuery] Re: file upload field and standard fields

2009-02-02 Thread jQuery Lover
Well, it seems you are getting your 'nom' and 'phenom' text fields... and yes, domb is right, file information data is stored in $_FILES array... Read jQuery HowTo Resource - http://jquery-howto.blogspot.com On Mon, Feb 2, 2009 at 3:35 PM, phicarre gam...@bluewin.ch wrote: No

[jQuery] Re: File upload procedure not working in IE7 (only)

2008-09-23 Thread Nigel G
I posted this question a few days ago, but no one replied and it has now dropped out of sight. I am surprised that no one can give me any advice, even on how to debug the problem. So this is a plea: please tell me what is wrong (best) or how to debug the issue! Thank you and sorry for

[jQuery] Re: File Upload

2008-09-09 Thread Jake
People keep claiming that but we haven't been able to reproduce an Adblock issue internally. What Adblock rule is blocking SWFUpload? Maybe we can fix it. On Aug 28, 4:16 pm, Fabian Alejandro [EMAIL PROTECTED] wrote: Hi, you can also trywww.swfupload.org, it is fully configurable. it

[jQuery] Re: File Upload

2008-08-28 Thread Martynas Brijunas
Hi, you can also try www.swfupload.org, it is fully configurable. On Aug 28, 5:05 am, Karl Rudd [EMAIL PROTECTED] wrote: The file input doesn't style very well, at least on all browser. Have a look here:  http://www.quirksmode.org/dom/inputfile.html You can kind of fake it, that is you

[jQuery] Re: File Upload

2008-08-28 Thread shapper
The ExtJS FileUploadField seems a good solution ... a custom Browse buttom with a read only path field. All customized. Does anyone knows how to turn this into JQuery? I have been reading SWFUpload but I can't want to use Flash. I have also see the FileStyle JQuery Plugin but it only styles the

[jQuery] Re: File Upload

2008-08-28 Thread Karl Rudd
Ummm actually the FileStyle adds an extra input text field and button (well actually a background image in the wrapper div), so you can style both. You should be able to easily modify the plugin to make the text field read-only. Karl Rudd On Thu, Aug 28, 2008 at 11:31 PM, shapper [EMAIL

[jQuery] Re: File Upload

2008-08-28 Thread Fabian Alejandro
Hi, you can also try www.swfupload.org, it is fully configurable. it isn't compatible with FF3 + Adblock

[jQuery] Re: File Upload

2008-08-27 Thread rudy ub
I've seen it on ExtJS FileUploadField example: http://extjs.com/deploy/dev/examples/form/file-upload.html On Thu, Aug 28, 2008 at 8:46 AM, shapper [EMAIL PROTECTED] wrote: Hi, Does anyone knows how to style and input of type file with JQuery? I want to use an image as the button or maybe a

[jQuery] Re: File Upload

2008-08-27 Thread Karl Rudd
The file input doesn't style very well, at least on all browser. Have a look here: http://www.quirksmode.org/dom/inputfile.html You can kind of fake it, that is you hide the actual input and do some tricks with JavaScript. There's a jQuery plugin that does this by the looks of it:

[jQuery] Re: File upload of a form inside another form

2008-06-17 Thread Giovanni Battista Lenoci
Mike Alsup ha scritto: There's a ton of them. after, before, insertAfter, insertBefore, append, prepend, etc http://docs.jquery.com/Manipulation Ex: $('#myElementToMove').insertAfter('#myDestinationDiv'); Ups... I was using these metodhs to inject new DOM elements, but I never tought

[jQuery] Re: File upload of a form inside another form

2008-06-16 Thread Giovanni Battista Lenoci
Giovanni Battista Lenoci ha scritto: Put your nested form after the parent form, and hide it. Keep the upload-elements in the parent form and move them to the upload-form on submit (using a different submit button). Clone/move back to the parent form after the submit for more files.

[jQuery] Re: File upload of a form inside another form

2008-06-16 Thread Mike Alsup
I was tinking that maybe moving the input element could works, but I'm looking in the doc and I cant find a method for moving a DOM element. There's a ton of them. after, before, insertAfter, insertBefore, append, prepend, etc http://docs.jquery.com/Manipulation Ex:

[jQuery] Re: File Upload with Form Plugin

2008-06-13 Thread nenegoro
I have another. Form contains file upload form+text area. Submiting form do not send file to the server, it just sends file name.

[jQuery] Re: File Upload with Form Plugin

2008-06-04 Thread Pascal Zajac
You're right, it does, I changed the id for the submit button from id=submit to id=submit_button and it works as intended. I wasn't aware that 'submit' wasn't allowed; I did see the alert() about that in the source code but it didn't actually trigger so I never got the error message, and didn't

[jQuery] Re: File Upload with Form Plugin

2008-06-04 Thread Mike Alsup
You're right, it does, I changed the id for the submit button from id=submit to id=submit_button and it works as intended. I wasn't aware that 'submit' wasn't allowed; I did see the alert() about that in the source code but it didn't actually trigger so I never got the error message, and

[jQuery] Re: File Upload with Form Plugin

2008-06-03 Thread Mike Alsup
I'm using the Form Plugin to add AJAX functionality to forms on a system I'm building. The plugin works perfectly with regular text forms, but when I try to add file uploads to the mix, it dies with an error on line 209: form.submit(); is not a function. Using breakpoints in Firebug I've

[jQuery] Re: File upload of a form inside another form

2008-05-25 Thread Jörn Zaefferer
I don't have a drop-in solution, just an idea to start with: Put your nested form after the parent form, and hide it. Keep the upload-elements in the parent form and move them to the upload-form on submit (using a different submit button). Clone/move back to the parent form after the submit for

[jQuery] Re: File upload of a form inside another form

2008-05-25 Thread Giovanni Battista Lenoci
Put your nested form after the parent form, and hide it. Keep the upload-elements in the parent form and move them to the upload-form on submit (using a different submit button). Clone/move back to the parent form after the submit for more files. Thank you for your answer Jörn, It works :-)

[jQuery] Re: File upload with AJAX

2008-01-10 Thread Alexandre Plennevaux
you can via the use of flash. Check jquploader plugin... On Jan 8, 2008 8:40 PM, Mike Alsup [EMAIL PROTECTED] wrote: Technically, no, you can not upload files using ajax. But the Form Plugin supports this in a manner that appears to use ajax. http://www.malsup.com/jquery/form/#code-samples

[jQuery] Re: File upload with AJAX

2008-01-08 Thread Mike Alsup
Technically, no, you can not upload files using ajax. But the Form Plugin supports this in a manner that appears to use ajax. http://www.malsup.com/jquery/form/#code-samples Mike On Jan 8, 2008 11:35 AM, Jimmy Neph [EMAIL PROTECTED] wrote: Hello people. I want to know if is possible to