Re: [web2py] Re: Uploading multiple images in web2py

2016-07-11 Thread Michele Comitini
@fabio using dropzone.js helps, it can upload in parallel many files using the same SQLFORM, so it is not uploading in a single POST call, but many in parallel: one for each uploaded file. The best way to do it is to write a specific action that handles just the file upload, independently from the

[web2py] Re: Uploading multiple images in web2py

2016-07-11 Thread Fabio Ceccarani
Thanks Massimo. Il giorno lunedì 11 luglio 2016 08:06:01 UTC+2, Massimo Di Pierro ha scritto: > > At this time there is not. > > On Friday, 8 July 2016 17:42:35 UTC-5, Fabio Ceccarani wrote: >> >> Thanks Ron. >> Thanks Massimo, I have 6 upload fields (img01, img02,...img06); there is >> way to u

[web2py] Re: Uploading multiple images in web2py

2016-07-10 Thread Massimo Di Pierro
At this time there is not. On Friday, 8 July 2016 17:42:35 UTC-5, Fabio Ceccarani wrote: > > Thanks Ron. > Thanks Massimo, I have 6 upload fields (img01, img02,...img06); there is > way to use multiple upload with only one in a > SQLFORM? > > Thanks > Fabio > > Il giorno mercoledì 6 luglio 201

[web2py] Re: Uploading multiple images in web2py

2016-07-08 Thread Fabio Ceccarani
Thanks Ron. Thanks Massimo, I have 6 upload fields (img01, img02,...img06); there is way to use multiple upload with only one in a SQLFORM? Thanks Fabio Il giorno mercoledì 6 luglio 2016 09:45:53 UTC+2, Massimo Di Pierro ha scritto: > > Mind that with modern browsers (tested on chrome), drop

[web2py] Re: Uploading multiple images in web2py

2016-07-06 Thread Massimo Di Pierro
Mind that with modern browsers (tested on chrome), dropzone is not necessary as it is the default behavior. All you need to do is use CSS to style the to make it clear to users they can drop files there. On Tuesday, 5 July 2016 16:28:11 UTC-5, Fabio Ceccarani wrote: > > I'm trying with dropzon