thank you, that worked to get links on the screen, but is there a way to display custom link text, rather than the file name, which is very long sometimes?
Assuming it’s a Multiple Files column, then no, not easily.
If you want that, then you are probably better off splitting the files out into a dedicated table, with one row per file. Then you could have an extra column for the custom label, and display them in a collection.
I tried making a table like that, but I don’t know how to get files in there and have them associated with a particular item, or how to display them nicely. I couldn’t find documentation on how to do it, and the AI doesn’t help. are there instructions somewhere?
Your table would need a minimum of 3 columns (all Text type columns):
ItemID: this will link to the Item the file is associated. You should use the RowID value from your Items table for this.
File: this will be the URL of the uploaded file
Description: this will be the custom label/description for the file
To add files to a specific item, add a button to the item details screen, and configure the action to “Show Form Screen”. Target the form screen at your Files table and add input components for the File and Description. Also add a “Values from Screen” component and select the RowID column, and target that at the ItemID column.
To display the files, use any type of Collection component, target it at the Files table, and use screen filtering to only show files associated with the current Item.
@ThinhDinh - Miracle Method also occurred to me, but I don’t think that would help here (with a Multiple Files column), as there is no way to add labels for specific files.
I’ve got this functionally working, but my client wants the form screen to have her color pallette (background color, font color, etc). is there a way to add css to the form screen?
Yes, but the top and bottom of the form are outside of the container, so they dont change color, and they dont use the Accent color, they just stay white.