|
|
Sergey Kornilov admin 10/8/2025 |
|
This would require some custom coding. We do something similar in DocManager template. Check this article for inspiration: |
|
|
S
|
salus2 author 10/10/2025 |
|
Thanks for this info. GPT produced the following code for After record added and After record updated events that seperates multi-file uploads into multiple database records. This code additionally creates a url that points back to images, for use with PHPRunners most-excellent image viewer. $files = json_decode($values["File"], true); // If there's only one file, handle it directly $fileURL = (strpos($filetype, "image/") === 0 || empty($filetype))} // If there are multiple files, fan them out $firstURL = (strpos($firstType, "image/") === 0 || empty($firstType))} |
|
|
|
|