File uploads
File uploads
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
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.

- DataTalk is an innovative AppGini plugin based on ChatGPT that allows you to interact with your AppGini database using natural language questions, without writing any SQL. Check the demo video
- Check our other plugins and get a generous discount of up to 30% when buying 2 or more plugins.
- Need personalized consulting on your specific app and customizations? Book an online call with me here.
Re: File uploads
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. 

-
- Posts: 26
- Joined: 2014-05-01 12:57
Re: File uploads
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.
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.