Page 1 of 1

File uploads

Posted: 2014-04-26 13:52
by Dpitalo2
It seems I can only upload one file. Is it possible to upload more than one file to a record without creating multiple fields?

Re: File uploads

Posted: 2014-06-07 17:05
by a.gneady
I know my reply is toooo late, but just wanted to reply in case someone stumbles upon this post. AppGini supports only one file per field currently, though this might change in future releases. For now, you can create multiple upload fields in your table.

Re: File uploads

Posted: 2014-06-12 02:33
by KSan
Or... using good db design technique, you can make images a child table and add as many images as needed to a parent record using AppGini's currently existing and wonderful parent/child relationship capabilities! Just an idea. :D

Re: File uploads

Posted: 2014-07-23 13:48
by TheCodeRed
I am also interested in something that allows users to select multiple files and it simply creates just creates a new record for every image.
I am currently looking into some kind of JavaUpload function.

Overall Outline would look like this.

Table:
id
photo
album

If you select 5 files, it runs a while loop and just creates 5 records with 1 image per record. I can't imagine it is that difficult. I am just thinking about this now because I am starting to use AppGiini for CMS backends to a few of my websites.