Re: [T4]. multiple file upload. Help.

2009-08-04 Thread Norman Franke
l. -- View this message in context: http://www.nabble.com/-T4-.-multiple-file-upload.-Help.-tp24807257p24807257.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr..

Re: [T4]. multiple file upload. Help.

2009-08-04 Thread Lance Java
4, 2009 at 2:11 PM, kk4Nabble > wrote: > >> >> > > >> >> > Hi all. > >> >> > > >> >> > Am using Tapestry 4.1.5. > >> >> > Can anybody help me with uploading multiple files. Just like Gmail > >> doe

Re: [T4]. multiple file upload. Help.

2009-08-04 Thread Juan E. Maya
>> >> > Right now i can upload single file ,But how to upload multiple files >> via >> >> > AJAX. >> >> > Is there any way to do it. >> >> > >> >> > is there anyway to do through the dojo which is integrated with >> ta

Re: [T4]. multiple file upload. Help.

2009-08-04 Thread Lance Java
anybody help me with uploading multiple files. Just like Gmail > does. > >> > > >> > Right now i can upload single file ,But how to upload multiple files > via > >> > AJAX. > >> > Is there any way to do it. > >> > > >> > is th

Re: [T4]. multiple file upload. Help.

2009-08-04 Thread Juan E. Maya
; Can anybody help me with uploading multiple files. Just like Gmail does. >> > >> > Right now i can upload single file ,But how to upload multiple files via >> > AJAX. >> > Is there any way to do it. >> > >> > is there anyway to do through

Re: [T4]. multiple file upload. Help.

2009-08-04 Thread Lance Java
stry > 4? > > Please suggest.. > > > > Thank u all. > > > > > > -- > > View this message in context: > http://www.nabble.com/-T4-.-multiple-file-upload.-Help.-tp24807257p24807257.html > > Sent from the Tapestry - User mailing list archive at Nabbl

Re: [T4]. multiple file upload. Help.

2009-08-04 Thread Juan E. Maya
files via > AJAX. > Is there any way to do it. > > is there anyway to do through the dojo which is integrated with tapestry 4? > Please suggest.. > > Thank u  all. > > > -- > View this message in context: > http://www.nabble.com/-T4-.-multiple-file-upload.-Hel

[T4]. multiple file upload. Help.

2009-08-04 Thread kk4Nabble
? Please suggest.. Thank u all. -- View this message in context: http://www.nabble.com/-T4-.-multiple-file-upload.-Help.-tp24807257p24807257.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e

[T4]. multiple file upload. Help.

2009-08-04 Thread kk4Nabble
-- View this message in context: http://www.nabble.com/-T4-.-multiple-file-upload.-Help.-tp24807180p24807180.html Sent from the Tapestry - User mailing list archive at Nabble.com. - To unsubscribe, e-mail: users-unsubscr

Re: T5: Multiple File Upload

2008-11-18 Thread Henry
Michael Lake netvue.com> writes: > > > Filip - > > You are exactly right. The session id wasn't being passed - and shame on > me for not actually comparing the "t:formdata" values because they are > indeed the same even when using the normal > multiple times. > > Thank you and thanks to F

Re: Multiple file upload

2008-08-30 Thread ProAdmin Dariusz Dwornikowski
t; Ill be happy. > > > > 2008/8/30 Imants Firsts <[EMAIL PROTECTED]> > > > > > If you don't mind introducing the dependency to a flash component, then > > > look at this: > > > http://www.swfupload.org/ > > > > > > I have succes

Re: Multiple file upload

2008-08-30 Thread Toby Hobson
> Ill be happy. > > 2008/8/30 Imants Firsts <[EMAIL PROTECTED]> > > > If you don't mind introducing the dependency to a flash component, then > > look at this: > > http://www.swfupload.org/ > > > > I have successfully created a tapestry component using

Re: Multiple file upload

2008-08-30 Thread ProAdmin Dariusz Dwornikowski
ssfully created a tapestry component using SWFUpload, which > supports multiple file upload and degrades to default single file upload if > Flash is not present. > > > Quoting Thiago HP <[EMAIL PROTECTED]>: > > On Thu, Aug 28, 2008 at 3:27 PM, Chris Lewis > > <[E

Re: Multiple file upload

2008-08-29 Thread Imants Firsts
If you don't mind introducing the dependency to a flash component, then look at this: http://www.swfupload.org/ I have successfully created a tapestry component using SWFUpload, which supports multiple file upload and degrades to default single file upload if Flash is not present. Qu

Re: Multiple file upload

2008-08-28 Thread ProAdmin Dariusz Dwornikowski
Yeah I will try do something like that. I can see a problem to put the files ( paths) to the object i want - along with data from form - in my case a sports news. 2008/8/28 Thiago HP <[EMAIL PROTECTED]>: > On Thu, Aug 28, 2008 at 3:27 PM, Chris Lewis <[EMAIL PROTECTED]> wrote: >> The tricky part u

Re: Multiple file upload

2008-08-28 Thread Thiago HP
On Thu, Aug 28, 2008 at 3:27 PM, Chris Lewis <[EMAIL PROTECTED]> wrote: > The tricky part unfortunately is dealing with T5. I don't know how you > can create new components on the fly. You just cannot do that. Tapestry 5' mantra is "Static Structure, Dynamic Behavior". One way to do it would be pu

Re: Multiple file upload

2008-08-28 Thread Chris Lewis
>From the front end, multi file uploads must be done using JS to create additional file input elements on the fly. Uploading them "via AJAX" is all about perception, as you can't actually do it since the JS would need to stream the bytes of the selected files (which is of course not allowed). The p

Re: Multiple file upload

2008-08-28 Thread Massimo Lusetti
On Thu, Aug 28, 2008 at 5:25 PM, ProAdmin Dariusz Dwornikowski <[EMAIL PROTECTED]> wrote: > Can somebody confirm it is a good direction? Doesn't the ajax and form related component help you? -- Massimo http://meridio.blogspot.com

Re: Multiple file upload

2008-08-28 Thread Lance Java
The html file object only supports 1 file at a time, it's also locked down by browser security so you can't set the value via javascript. To upload multiple files you can either use multiple file objects with some user friendly javascript or use an applet or a flash component. I've seen some open

Re: Multiple file upload

2008-08-28 Thread ProAdmin Dariusz Dwornikowski
Yes I know the page, I keep it open all the time. Im juts new to tapestry and do not know how to 'bite' it. That is why I wrote here. Today I will try to wirte some component to have multiple upload. What I invented is such scenrio: I get Button (Upload), when i click it and choose file, the file

Re: Multiple file upload

2008-08-28 Thread Massimo Lusetti
On Thu, Aug 28, 2008 at 5:08 PM, ProAdmin Dariusz Dwornikowski <[EMAIL PROTECTED]> wrote: > I think some major ajax has to be used. Look into Component Reference on Tapestry5 documentation site -- Massimo http://meridio.blogspot.com

Re: Multiple file upload

2008-08-28 Thread ProAdmin Dariusz Dwornikowski
I think some major ajax has to be used. 2008/8/28 Szemere Szemere <[EMAIL PROTECTED]>: > I don't have a solution to this, but would also be interested to hear of > one. > -- Pozdrawiam, Dariusz Dwornikowski ProAdmin ul. Królowej Jadwigi 44/2 61-872

Re: Multiple file upload

2008-08-28 Thread Szemere Szemere
I don't have a solution to this, but would also be interested to hear of one.

Multiple file upload

2008-08-27 Thread ProAdmin Dariusz Dwornikowski
Hi, I encountered such problem: I got a news editing page and I would like to be able to upload as many files as I want. I can do a form with ex. 5 file uploading fields, but that limits me to 5 ofc. Is it possible to do such thing, that when i upload one file, I can trigger a second upload, and

Re: T5: Multiple File Upload

2008-08-07 Thread S Simm
I'd love to see some code snippets too. I need the same functionality. Thanks, -Stephen -- View this message in context: http://www.nabble.com/T5%3A-Multiple-File-Upload-tp15598726p18867712.html Sent from the Tapestry - User mailing list archive at Nabbl

Re: T5: Multiple File Upload

2008-02-21 Thread Filip S. Adamsen
So, does this mean it's working for you now? If so, would you mind sharing? :) -Filip Michael Lake skrev: Filip - You are exactly right. The session id wasn't being passed - and shame on me for not actually comparing the "t:formdata" values because they are indeed the same even when using

Re: T5: Multiple File Upload

2008-02-21 Thread Michael Lake
Filip - You are exactly right. The session id wasn't being passed - and shame on me for not actually comparing the "t:formdata" values because they are indeed the same even when using the normal multiple times. Thank you and thanks to Francois Armand for showing me how to tease the sessio

Re: T5: Multiple File Upload

2008-02-21 Thread Filip S. Adamsen
Hi, Are you sure that using the same t:formdata is what's causing the issue? There seems to be a Flash bug that causes SwfUpload to send the wrong session id with the request. Could this be why your session persisted list isn't behaving as expected? -Filip Michael Lake skrev: I'm working

T5: Multiple File Upload

2008-02-20 Thread Michael Lake
I'm working on a project where I need multiple files (40 - 50) to be uploaded from a single page. The "tapestry-upload" module is unsuitable because the "t:upload" component only allows you to select one file at a time. Selecting 50 files from the "browse for file" dialog one at a time would

Re: Tapestry - Multiple File Upload

2007-01-18 Thread Anjana Gopinath
ut Is there a way to upload multiple files to server or to upload a directory? Thanks! Anjana Gopinath -- View this message in context: http://www.nabble.com/Tapestry--- Multiple-File-Upload-tf3034647.html#a8436908 Sent from the Tapestry - User mailing list archive at Nabbl

Re: Tapestry - Multiple File Upload

2007-01-18 Thread sunilmanu
works very well for a single file. But Is there a way to upload > multiple files to server or to upload a directory? > > Thanks! > Anjana Gopinath > > > > > > > > -- View this message in context: http://www.nabble.com/Tapestry---Multiple-File-Up

Tapestry - Multiple File Upload

2007-01-18 Thread Anjana Gopinath
Hi, I am using tapestry upload component to upload a file to the server. This works very well for a single file. But Is there a way to upload multiple files to server or to upload a directory? Thanks! Anjana Gopinath