Re: [qooxdoo-devel] file upload dialog

2012-08-05 Thread Lukas Havemann
Hey, yes you are totally right. I thought that the File API is more widly spread so that you can access directly the Binary or Text data in qooxdoo. Thank you for your hint! Regards Lukas On 4 August 2012 12:47, John Spackman wrote: > Hi Lukas > > What do you mean by the raw data? Once the fi

Re: [qooxdoo-devel] file upload dialog

2012-08-05 Thread Lukas Havemann
Thank you very much! But it seems that I can't access the raw data of the uploaded file or can't I? Regards Lukas On Aug 3, 2012, at 12:13 PM, Cajus Pollmeier wrote: > Am Freitag, 3. August 2012, 11:47:22 schrieb Lukas havemann: >> Hello, >> >> Why is there no file upload input widget in the

Re: [qooxdoo-devel] file upload dialog

2012-08-04 Thread Lukas havemann
Hey, yes you are totally right. I mistakenly thought that the File API is more widely spread in modern browsers so that you can directly access the Binary or Text data in qooxdoo. Thank you for your hint! Regards Lukas -- View this message in context: http://qooxdoo.678.n2.nabble.com/file-up

Re: [qooxdoo-devel] file upload dialog

2012-08-04 Thread John Spackman
Hi Lukas What do you mean by the raw data? Once the file is uploaded, the server has the whole file in "raw" form; the client can get that data directly on browsers that support the API, otherwise you'd have to upload it to the server and retrieve it with an AJAX request Does that answer your qu

Re: [qooxdoo-devel] file upload dialog

2012-08-03 Thread Lukas havemann
Thank you very much! But it seems that I can't access the raw data of the uploaded file or can't I? Regards Lukas -- View this message in context: http://qooxdoo.678.n2.nabble.com/file-upload-dialog-tp7580872p7580876.html Sent from the qooxdoo mailing list archive at Nabble.com.

Re: [qooxdoo-devel] file upload dialog

2012-08-03 Thread Cajus Pollmeier
Am Freitag, 3. August 2012, 11:47:22 schrieb Lukas havemann: > Hello, > > Why is there no file upload input widget in the qx.ui.form package? > and how do i implement a file upload ? > > Regards > Lukas Hi Lukas, maybe the UploadMgr from qooxdoo-contrib is what you're looking for. You can inc

Re: [qooxdoo-devel] file upload dialog

2012-08-03 Thread John Spackman
Upload widgets are provided as contribs maintained by the community; here's one that I wrote: http://qooxdoo.org/contrib/project/uploadmgr John On 03/08/2012 10:47, "Lukas havemann" wrote: >Hello, > >Why is there no file upload input widget in the qx.ui.form package? >and how do i implement a

Re: [qooxdoo-devel] file upload dialog

2012-08-03 Thread thron7
Lukas, check these two contributions: http://qooxdoo.org/contrib/project#uploadmgr and #uploadwidget T. On 08/03/2012 11:47 AM, Lukas havemann wrote: > Hello, > > Why is there no file upload input widget in the qx.ui.form package? > and how do i implement a file upload ? > > Regards > Lukas > >

[qooxdoo-devel] file upload dialog

2012-08-03 Thread Lukas havemann
Hello, Why is there no file upload input widget in the qx.ui.form package? and how do i implement a file upload ? Regards Lukas -- View this message in context: http://qooxdoo.678.n2.nabble.com/file-upload-dialog-tp7580872.html Sent from the qooxdoo mailing list archive at Nabble.com. --

Re: [qooxdoo-devel] File upload

2012-04-25 Thread Benjamin Dreux
Hi John I just tested your idea of using the begin upload event. Unfortunately firefox and chrome behavior is the same as when calling window open when the file response is set. The solution you proposed, i don't want to use popup. But i will look for a elegant visual way to require two click fro

Re: [qooxdoo-devel] File upload

2012-04-25 Thread John Spackman
Hi Benjamin >Here is a question about the same issue i've got >http://stackoverflow.com/questions/6628949/window-open-popup-getting-block >ed-during-click-event >Is it possible to do a sync file upload?? No, sorry - but using the stack overflow workaround, if you trap the "beginUpload" event you'

Re: [qooxdoo-devel] File upload

2012-04-25 Thread Benjamin Dreux
Hi Johns Here is a question about the same issue i've got http://stackoverflow.com/questions/6628949/window-open-popup-getting-blocked-during-click-event Is it possible to do a sync file upload?? Regards Le 25 avril 2012 07:46, Benjamin Dreux a écrit : > Hi John > > Thanks for you comments. > I

Re: [qooxdoo-devel] File upload

2012-04-25 Thread Benjamin Dreux
Hi John Thanks for you comments. I just applied it. It work, almost perfect. The downloaded file is a pdf. My last issue is that, this call to window.open will open a popup in chrome. I was expecting a simple file download, like it does with other place where i do a window.open. Maybe it parti

Re: [qooxdoo-devel] File upload

2012-04-25 Thread John Spackman
Hi Benjamin >I founded that the data of the uploader event has a property called >response. >I assume it's the text of the response. Yes >But what if the response is a file that i want to open in my browser?? >When i need to open a file in a new window usaly, it do something like >this >window.o

Re: [qooxdoo-devel] File upload

2012-04-24 Thread Benjamin Dreux
I founded that the data of the uploader event has a property called response. I assume it's the text of the response. But what if the response is a file that i want to open in my browser?? When i need to open a file in a new window usaly, it do something like this window.open("_black","url")... But

Re: [qooxdoo-devel] File upload

2012-04-24 Thread Benjamin Dreux
Is it possible to execute a function on success of the upload. I means not just the upload complete, but the response to request wich send the file. As a side note, is it possible to access the api of the widget?? Regards Le 24 avril 2012 12:48, Benjamin Dreux a écrit : > Thanks for you fast re

Re: [qooxdoo-devel] File upload

2012-04-24 Thread Benjamin Dreux
Thanks for you fast reaction Le 24 avril 2012 12:15, John Spackman a écrit : > There was some debug code left in that was causing that (I've just > committed a patch to remove it).  The message is automatically removed > when you do a "generate.py build" for production. > > John > > On 24/04/2012

Re: [qooxdoo-devel] File upload

2012-04-24 Thread John Spackman
There was some debug code left in that was causing that (I've just committed a patch to remove it). The message is automatically removed when you do a "generate.py build" for production. John On 24/04/2012 17:01, "Benjamin Dreux" wrote: >I've noticed that when the file is selected/updaloded th

Re: [qooxdoo-devel] File upload

2012-04-24 Thread Benjamin Dreux
I've noticed that when the file is selected/updaloded the content is printed in the console, is that normal?? Le 24 avril 2012 11:34, John Spackman a écrit : > Hi Benjamin > > That's the version I'd expect, not the import-contrib. > > John > > On 24/04/2012 15:33, "Benjamin Dreux" wrote: > >>I

Re: [qooxdoo-devel] File upload

2012-04-24 Thread John Spackman
Hi Benjamin That's the version I'd expect, not the import-contrib. John On 24/04/2012 15:33, "Benjamin Dreux" wrote: >I found something on an other page > >"jobs":{ >"libraries":{ > "library" : [{ >"manifest" : "contrib://UploadMgr/trunk/Manifest.json" > }] >} > }

Re: [qooxdoo-devel] File upload

2012-04-24 Thread Benjamin Dreux
I found something on an other page "jobs":{ "libraries":{ "library" : [{ "manifest" : "contrib://UploadMgr/trunk/Manifest.json" }] } } This will shadow the libraries jobs, but in normal case it is not a issue. Le 24 avril 2012 09:52, Benjamin Dreux a écrit : > Hi

Re: [qooxdoo-devel] File upload

2012-04-24 Thread Benjamin Dreux
Hi John After some reading on the qooxdoo doc, if added this in my config.json file jobs":{ "import-contrib":{ "library" : [{ "manifest" : "contrib://UploadMgr/trunk/Manifest.json" }] } } The job is executed with error. But on the app code, the class are not founde

Re: [qooxdoo-devel] File upload

2012-04-24 Thread John Spackman
Hi Benjamin I wrote the UploadMgr so I'm biased! :) I'm using it in a number of live websites already and it's stable and fast; the last big change was October last year. Support is here, on this list. You can get the SVN trunk from here: https://qooxdoo-contrib.svn.sourceforge.net/svn

[qooxdoo-devel] File upload

2012-04-24 Thread Benjamin Dreux
Hi I'm looking for a widget to upload file to the server. As i've seen there is a upload manager in the contrib. Is this the better way to go ?? If so where can i download it ? Thanks -- Benjamin Dreux Analyste-Programmeur Chaire de logiciel libre-Finance Social et solidaire UQAM Montréal ---

Re: [qooxdoo-devel] File Upload?

2011-07-22 Thread Andrew Manson
I found that it was easier to just use a third party lib http://valums.com/ajax-upload/ It works really well and its not too hard to integrate into qooxdoo Cheers, - Andrew - Andrew Manson Graticule Cloud Applications

Re: [qooxdoo-devel] File Upload?

2011-07-20 Thread Fritz Zaucker
Well, I hope you are using a current version of the contrib ... ;-) Anyway, why don't you add whatever diagnostic output you want in the upload contrib's source code? BWT, what does "not as robust as I'd like it to be" mean? We use it a lot and didn't have any problems with it. Cheers, Fritz On

[qooxdoo-devel] File Upload?

2011-07-20 Thread Benjamin Turner
Hey guys, I've been using the file upload contribution that was released a few years ago, but it's really not as robust as I'd like it to be. Is there any other way to do file uploads? I'd like to be able to have more feedback on what exactly is going on with them, during their phases of upload.

Re: [qooxdoo-devel] File upload on Safari for Windows

2011-04-20 Thread JohnZhang
Hi Andy, You mentioned in your post that you had working solution for Safari and Uplaod issue. Could you let me know how you resolved the issue? thanks very much John Zhang -- View this message in context: http://qooxdoo.678.n2.nabble.com/File-upload-on-Safari-for-Windows-tp5914400p6291005.ht

Re: [qooxdoo-devel] File upload on Safari for Windows

2011-01-12 Thread Martin Wittemann
Hey, Thanks for sharing your results. Its always good to have the solution in a thread for archiving purposes. Best, Martin Am 12.01.2011 um 18:17 schrieb Andy Fuchs: > OK - it seems the problem is two-fold: > > - Safari for Windows wants 'application/json' as mime-type of the response > (oth

Re: [qooxdoo-devel] File upload on Safari for Windows

2011-01-12 Thread Andy Fuchs
OK - it seems the problem is two-fold: - Safari for Windows wants 'application/json' as mime-type of the response (other browsers on Windows want 'text/plain', otherwise the problem is reversed) - and if you once told Windows7/Safari/IE8 to save '.sh' files it will always try to save the response

[qooxdoo-devel] File upload on Safari for Windows

2011-01-12 Thread Andy Fuchs
I'm again struggling with my file-upload (basically utilizing the mechanism in the file-upload-widget). I'm uploading a file to a server. Receiver is a shell-script (doFWUpload.sh), which just responds a JSON-string, if the file was received properly. Everything works fine, except on Safari for Wi

Re: [qooxdoo-devel] File upload

2010-12-13 Thread Craig Johnston
Yes exactly. Thank you! > > > Hmm, like Upload Widget [1]? > > [1] http://qooxdoo.org/contrib/project#uploadwidget > > On Mon, Dec 13, 2010 at 8:40 AM, Craig Johnston wrote: > > > I am building some forms in qooxdoo and need to add a file upload > section. > > > > Curious to know if anyone has a

Re: [qooxdoo-devel] File upload

2010-12-13 Thread Guilherme Aiolfi
Hmm, like Upload Widget [1]? [1] http://qooxdoo.org/contrib/project#uploadwidget On Mon, Dec 13, 2010 at 8:40 AM, Craig Johnston wrote: > I am building some forms in qooxdoo and need to add a file upload section. > > Curious to know if anyone has an elegant solution to this before I get > hacky

[qooxdoo-devel] File upload

2010-12-13 Thread Craig Johnston
I am building some forms in qooxdoo and need to add a file upload section. Curious to know if anyone has an elegant solution to this before I get hacky with it? Thanks! -- Oracle to DB2 Conversion Guide: Learn learn about

Re: [qooxdoo-devel] File Upload

2010-08-09 Thread Fritz Zaucker
See also http://qooxdoo.678.n2.nabble.com/about-the-upload-widget-td5200577.html Cheers, Fritz On Mon, 9 Aug 2010, Martin Wittemann wrote: > Hello Julian, > have you checked the trunk version of the UploadWidget [1] in the qooxdoo > contrib. As far as I know, we are using this in some 1&1 proj

Re: [qooxdoo-devel] File Upload

2010-08-08 Thread Martin Wittemann
Hello Julian, have you checked the trunk version of the UploadWidget [1] in the qooxdoo contrib. As far as I know, we are using this in some 1&1 projects which are on 1.2 / qooxdoo trunk. Maybe you can try that? Also greetings from Germany, Martin [1] http://qooxdoo.org/contrib/project#uploadwid

[qooxdoo-devel] File Upload

2010-08-08 Thread julian-w
Hello, I'm using the newest version of qooxdoo (1.2). Now, I want to add a button for file upload, but I don't know how to do it!? Can you help me, how to realize a File Upload in qooxdoo? I found with google a PlugIn, but this is only for the very old version 0.7. Greetings from Germany Julian

Re: [qooxdoo-devel] File upload w. qx.io.remote.Request ?

2009-02-02 Thread Florian Giesen
Hi Jim, you are absolutely right: there are many good reasons for using Qooxdoo, but for me the main reason is the browser interoperability too. That's why I prefer qooxdoo (as gui, inline or low level app) wherever possible and try to avoid "naked" JS code. Florian P.S.: In the meantime I imple

Re: [qooxdoo-devel] File upload w. qx.io.remote.Request ?

2009-01-30 Thread Jim Hunter
This is interesting. What it is doing is skirting the security issue by saying the only data you can send via their modified request object, is data that you have selected. So it looks like in FF3+ you can do a file upload without using a standard HTML form. But since no other browser supports it,

Re: [qooxdoo-devel] File upload w. qx.io.remote.Request ?

2009-01-30 Thread Florian Giesen
Hello Jim, if I am not understanding something completely wrong, which is always a realistic option ;-) , these two articles are producing evidence that it is possible with the nsIDOMFile API and the new method XMLHttpRequest.sendAsBinaryData(...) to implement pure AJAX fileuploads and other fancy

Re: [qooxdoo-devel] File upload w. qx.io.remote.Request ?

2009-01-29 Thread Jim Hunter
Yes, from what I read of the API, you are not reading it correctly. The API gives you read-only access to the values. From there you can not place that information back into another field to be submitted to the server. As I stated, that would be a HUGE security hole and ASAIK it will never be allow

Re: [qooxdoo-devel] File upload w. qx.io.remote.Request ?

2009-01-29 Thread Florian Giesen
Hello Jim, i fear, i have expressed myself ambiguously. I don't want to manipulate the values of a file input field. My intention was to upload a (already selected by the user) file with qx.io.remote.Request. But as far as i have understood the thematic that is not possible because there is no way

Re: [qooxdoo-devel] File upload w. qx.io.remote.Request ?

2009-01-28 Thread Jim Hunter
I think you misread the spec on this. What you are looking at is a read-only call. You will not be able to turn around and stuff that information into a field and then submit it to the server, so you are back at the same place you are now with all other browsers. JavaScript simply will not allow yo

Re: [qooxdoo-devel] File upload w. qx.io.remote.Request ?

2009-01-28 Thread Florian Giesen
Thank you Jim! Although this isn't really a good news for me, at least i don't try to implement something impossible any longer. I did some googleing and found out, that it is possible to upload files via javascript with the new FF3 nsIDOMFile API. May

Re: [qooxdoo-devel] File upload w. qx.io.remote.Request ?

2009-01-27 Thread Jim Hunter
Manually setting the values of a upload field is against JavaScript rules, it simply can not be done. If you want to upload data to a server you have to go through a standard HTML form. There is a contribution to qooxdoo that does all that for you 'behind the scenes', I suggest looking into that. T

Re: [qooxdoo-devel] File upload w. qx.io.remote.Request ?

2009-01-27 Thread Florian Giesen
Hello Roman, thanks for your answer. What do you mean by "classic HTML form"? I assume you built the form > with qooxdoo form elements? No, the entire form is not generated by qooxdoo, it is plain html. With my (qooxdoo) script i collect the values of the form elements and send them with qx.io.re

Re: [qooxdoo-devel] File upload w. qx.io.remote.Request ?

2009-01-27 Thread Roman Schmid
Hi Florian What do you mean by "classic HTML form"? I assume you built the form with qooxdoo form elements? As far as i know you cannot send files using AJAX (xmlHttp). You'll have to change your type of transport.. did you try to set the "fileUpload" Property? http://demo.qooxdoo.org/current/api

Re: [qooxdoo-devel] File upload w. qx.io.remote.Request ?

2009-01-27 Thread Florian Giesen
Hello Alex, thanks for your answer. If i don't find another solution, i will use the upload widget, but in my actual scenario i would like to avoid it: i have a classic HTML form and want to submit the form data via an ajax request with qooxdoo. In the best case, i don't want to touch the form and

Re: [qooxdoo-devel] File upload w. qx.io.remote.Request ?

2009-01-26 Thread Alexander Back
Hi Florian, Florian Giesen wrote: > Hello Qooxdooians, > > has anyone an idea how to get file uploads working with > qx.io.remote.Request or am i trying something impossible ? I have some good news for you: you do not have to implement a file upload widget for yourself. qooxdoo is already offer

[qooxdoo-devel] File upload w. qx.io.remote.Request ?

2009-01-26 Thread Florian Giesen
Hello Qooxdooians, has anyone an idea how to get file uploads working with qx.io.remote.Request or am i trying something impossible ? Regards, Florian -- This SF.net email is sponsored by: SourcForge Community SourceForge

[qooxdoo-devel] File Upload issues in IE

2009-01-13 Thread Dacquay, Eric
Hi, I'm working with the UploadWidget from the contrib section but I am having a few issues with it on IE. The first of these is that depending on what happens in the application, the user can't select a file a second time. The file selection dialog box comes up but the filename does not show up

Re: [qooxdoo-devel] File Upload from within a qooxdoo application

2007-12-14 Thread Jim Hunter
If you are using an IFrame then it is not going to work since at the root you are using the built in file upload facility of the browser and it's the browser that has the problem. As soon as the browser starts to initiate a connection to the server it aborts, never actually reaching the server. Whe

Re: [qooxdoo-devel] File Upload from within a qooxdoo application

2007-12-14 Thread Dietrich Streifert
Sorry but have not tested it under SSL at all. The widget creates a hidden iframe which is used as a target for the upload form (by means of the element form attribute target). The current document is not blocked by the upload process and is able the receive a "loaded" event from the hidden if

Re: [qooxdoo-devel] File Upload from within a qooxdoo application

2007-12-13 Thread Jim Hunter
So how is your file upload component working, now that you have had it working for a year+? What I am mostly concerned about is if it works on IE6 with SSL? A normal HTM form on IE6 using SSL does not work. Have you tested it under this scenario? Thanks, Jim On Nov 6, 2006 3:20 AM, David Gerlich

Re: [qooxdoo-devel] File upload widget for qooxdoo 0.7 beta3 available

2007-06-28 Thread westor
Great work, and I like it. Sometimes you don't need the textfield visible. Or you want do give some properties to the button. I looked in the source, and I set: uploadfield = new qx.ui.io.UploadField("button", 'Upload File', 'icon/16/places/document-folder.png'); uploadfield._text.setVisibility(f

Re: [qooxdoo-devel] File upload widget for qooxdoo 0.7 beta3 available

2007-06-09 Thread Nick Glencross
Dietrich That did the trick nicely! It would be really nice if this could become a standard feature. Nick On 04/06/07, Dietrich Streifert <[EMAIL PROTECTED]> wrote: > > Hi Nick! > > Thank you for your report. The problem was a missing overflow:"hidden" for > the FileUpload widget. I have corre

Re: [qooxdoo-devel] File upload widget for qooxdoo 0.7 beta3 available

2007-06-04 Thread Dietrich Streifert
Hi Nick! Thank you for your report. The problem was a missing overflow:"hidden" for the FileUpload widget. I have corrected that and created a new attachment to the bugzilla issue: http://bugzilla.qooxdoo.org/attachment.cgi?id=178 The Problem behind this seems to be the TextField implementat

Re: [qooxdoo-devel] File upload widget for qooxdoo 0.7 beta3 available

2007-06-03 Thread Nick Glencross
Dietrich, Dietrich Streifert wrote: > Hello List, > > While having some time I ported my upload widget to 0.7beta3. > > I also created a test perl cgi upload script which can be used to test > the implementation via a test html page. > > I'd like to give the files to someone willing to test th

[qooxdoo-devel] File upload widget for qooxdoo 0.7 beta3 available

2007-05-30 Thread Dietrich Streifert
Hello List, While having some time I ported my upload widget to 0.7beta3. I also created a test perl cgi upload script which can be used to test the implementation via a test html page. I'd like to give the files to someone willing to test the implementation and get some feedback. I used the

Re: [qooxdoo-devel] File Upload from within a qooxdoo application

2006-11-06 Thread Dietrich Streifert
Hi David! That would be great! Please send your implementation! I'm especially curious on how you managed to avoid the "browse" button. Thanks allot! David Gerlich schrieb: Jim Hunter schrieb: I wish you a lot of luck but where you are going to hit the wall is trying to get

Re: [qooxdoo-devel] File Upload from within a qooxdoo application

2006-11-06 Thread David Gerlich
Jim Hunter schrieb: > I wish you a lot of luck but where you are going to hit the wall is > trying to get the file data into or out of the input tag, JavaScript > won't let you. The only way to get the file data from the input tag to > the server is to do a basic form submit. This is a security

Re: [qooxdoo-devel] File Upload from within a qooxdoo application

2006-11-02 Thread Jim Hunter
I wish you a lot of luck but where you are going to hit the wall is trying to get the file data into or out of the input tag, _javascript_ won't let you. The only way to get the file data from the input tag to the server is to do a basic form submit.  This is a security design built into _javascrip

Re: [qooxdoo-devel] File Upload from within a qooxdoo application

2006-11-02 Thread Dirk Wellmann
Hi Dietrich, I only know the half, in IE it works with "document.forms[nn].nameofintput.click()" but this won't work in mozilla! here is how it works with IE: --- snip --- snap --- snip --- !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd";>

Re: [qooxdoo-devel] File Upload from within a qooxdoo application

2006-11-02 Thread Dietrich Streifert
Does anybody know how the button of a input tag of type file can be triggered through javascipt? Any help would be great. Thank you. Dietrich Streifert schrieb: > Hello List, > > has anybody written code which does a file upload from within a qooxdoo > application and is willing to share it

Re: [qooxdoo-devel] File Upload from within a qooxdoo application

2006-11-02 Thread Dietrich Streifert
Well the goal is to have a single widget which handles everything needed. Events are fired like "completed", "timeout", "failure" so the interface is as simple as possible. For the upload process itself I'm now trying to subclass qx.io.remote.IframeTransport where everything seems to be ready

Re: [qooxdoo-devel] File Upload from within a qooxdoo application

2006-11-02 Thread Alex D.
Why would you use qooxdoo-widgets for this? I think it's easier to create a form with DOM-api(createElement, createTextNode, createAttribute...). But i haven't tried such a thing yet. Thank you Alex but it would be sufficient to use the usual file selector which pops up on normal upload

Re: [qooxdoo-devel] File Upload from within a qooxdoo application

2006-11-02 Thread Dietrich Streifert
Thank you Alex but it would be sufficient to use the usual file selector which pops up on normal upload form handling. My current idea is to create a hidden iframe which includes a form which includes an input of type file. By inheriting qx.ui.form.TextField (qx.ui.form.FileField) which shows

Re: [qooxdoo-devel] File Upload from within a qooxdoo application

2006-11-02 Thread Alex D.
Do you have JVM on your client PCs? If yes then you can use it(not really comfortable but anyway) to read files from hard drive. ;-) Hi Dietrich, we did it in an other project, without useing qooxdoo, in the following way. We create a div with style hidden, into the div we create a form w

Re: [qooxdoo-devel] File Upload from within a qooxdoo application

2006-11-02 Thread Dirk Wellmann
Hi Dietrich, we did it in an other project, without useing qooxdoo, in the following way. We create a div with style hidden, into the div we create a form with the file field. From outside we fill the form with JavaScript and then post the form. For Securityreasons you could only use a Filesel

[qooxdoo-devel] File Upload from within a qooxdoo application

2006-11-02 Thread Dietrich Streifert
Hello List, has anybody written code which does a file upload from within a qooxdoo application and is willing to share it with the list? I'd like to get an idea on how file uploading could be done. Opening a native window which has a form which includes an input tag of type file is the obviou

Re: [qooxdoo-devel] File upload widget

2006-08-14 Thread Marcelo Busatta
> the request reaches the server: > > > _POST["owner_id"] 32 > > _POST["comment"] Nice file > > _POST["upload"] no value > > > but the upload field has no value the same occur to me, this code work fine in FireFox, but no in IE (sorry my inglish) -- View this message in context: http://w

Re: [qooxdoo-devel] File Upload

2006-08-02 Thread Sebastian Werner
[EMAIL PROTECTED] schrieb: > "Ricardo Borillo" <[EMAIL PROTECTED]> writes: > >> A few months ago Sebastian register in buzilla an enhancement for support >> File Uploading: >> http://bugzilla.qooxdoo.org/show_bug.cgi?id=63 >> >> Has somebody any news on this? I remember some mails from people work

Re: [qooxdoo-devel] File Upload

2006-07-29 Thread Derrell . Lipman
"Ricardo Borillo" <[EMAIL PROTECTED]> writes: > A few months ago Sebastian register in buzilla an enhancement for support > File Uploading: > http://bugzilla.qooxdoo.org/show_bug.cgi?id=63 > > Has somebody any news on this? I remember some mails from people working on > this, or trying to make it

[qooxdoo-devel] File Upload

2006-07-29 Thread Ricardo Borillo
Hi,A few months ago Sebastian register in buzilla an enhancement for support File Uploading:http://bugzilla.qooxdoo.org/show_bug.cgi?id=63Has somebody any news on this? I remember some mails from people working on this, or trying to make it work using the IframeTransportThanks in advance-- Salut,=

Re: [qooxdoo-devel] File Upload Widget

2006-06-08 Thread Sebastian Werner
Hi! You can vote for this feature here in our bugzilla: http://bugzilla.qooxdoo.org/show_bug.cgi?id=63 Sebastian Christoph Holubar schrieb: > Hello, > > i am writing a file upload script in the next days for my product. > Is there a need for implement in qooxdoo? > > Of course without reload

Re: [qooxdoo-devel] File Upload Widget

2006-06-02 Thread Nicolas Béliard
Hello, that would be greatly apreciated !! All the best Nicolas - Original Message - From: "Christoph Holubar" <[EMAIL PROTECTED]> To: Sent: Friday, June 02, 2006 11:28 PM Subject: [qooxdoo-devel] File Upload Widget > Hello, > > i am writing a file upload sc

Re: [qooxdoo-devel] File Upload Widget

2006-06-02 Thread Jim Hunter
It would be nice to have a file upload object in qooxdoo that replaces the element. But I have no need for anything on the back end, just the front end.Thanks for the offer,Jim On 6/2/06, Christoph Holubar <[EMAIL PROTECTED]> wrote: Hello,i am writing a file upload script in the next days for my p

[qooxdoo-devel] File Upload Widget

2006-06-02 Thread Christoph Holubar
Hello, i am writing a file upload script in the next days for my product. Is there a need for implement in qooxdoo? Of course without reload. It`s written in (of course) Javascript, combined with PHP on server-side. Christoph H ___ Qooxdoo-devel

[qooxdoo-devel] File upload widget?

2006-03-13 Thread BJörn Lindqvist
Is there a file upload widget in qooxdoo (QxFileUpload maybe)? Or does anyone know how one would go about creating one? -- mvh Björn --- This SF.Net email is sponsored by xPML, a groundbreaking scripting language that extends applications into